df = read.csv("NetflixOriginals.csv")
head(df)
##             Title                 Genre          Premiere Runtime IMDB.Score
## 1 Enter the Anime           Documentary    August 5, 2019      58        2.5
## 2     Dark Forces              Thriller   August 21, 2020      81        2.6
## 3         The App Science fiction/Drama December 26, 2019      79        2.6
## 4  The Open House       Horror thriller  January 19, 2018      94        3.2
## 5     Kaali Khuhi               Mystery  October 30, 2020      90        3.4
## 6           Drive                Action  November 1, 2019     147        3.5
##           Language
## 1 English/Japanese
## 2          Spanish
## 3          Italian
## 4          English
## 5            Hindi
## 6            Hindi
head(df,n=10)
##                              Title                   Genre          Premiere
## 1                  Enter the Anime             Documentary    August 5, 2019
## 2                      Dark Forces                Thriller   August 21, 2020
## 3                          The App   Science fiction/Drama December 26, 2019
## 4                   The Open House         Horror thriller  January 19, 2018
## 5                      Kaali Khuhi                 Mystery  October 30, 2020
## 6                            Drive                  Action  November 1, 2019
## 7                Leyla Everlasting                  Comedy  December 4, 2020
## 8  The Last Days of American Crime     Heist film/Thriller      June 5, 2020
## 9                          Paradox Musical/Western/Fantasy    March 23, 2018
## 10              Sardar Ka Grandson                  Comedy      May 18, 2021
##    Runtime IMDB.Score         Language
## 1       58        2.5 English/Japanese
## 2       81        2.6          Spanish
## 3       79        2.6          Italian
## 4       94        3.2          English
## 5       90        3.4            Hindi
## 6      147        3.5            Hindi
## 7      112        3.7          Turkish
## 8      149        3.7          English
## 9       73        3.9          English
## 10     139        4.1            Hindi
tail(df)
##                                           Title        Genre          Premiere
## 579  Ben Platt: Live from Radio City Music Hall Concert Film      May 20, 2020
## 580       Taylor Swift: Reputation Stadium Tour Concert Film December 31, 2018
## 581 Winter on Fire: Ukraine's Fight for Freedom  Documentary   October 9, 2015
## 582                     Springsteen on Broadway One-man show December 16, 2018
## 583   Emicida: AmarElo - It's All For Yesterday  Documentary  December 8, 2020
## 584    David Attenborough: A Life on Our Planet  Documentary   October 4, 2020
##     Runtime IMDB.Score                 Language
## 579      85        8.4                  English
## 580     125        8.4                  English
## 581      91        8.4 English/Ukranian/Russian
## 582     153        8.5                  English
## 583      89        8.6               Portuguese
## 584      83        9.0                  English
tail(df,n=10)
##                                           Title        Genre          Premiere
## 575                                  Seaspiracy  Documentary    March 24, 2021
## 576       The Three Deaths of Marisela Escobedo  Documentary  October 14, 2020
## 577                     Cuba and the Cameraman   Documentary November 24, 2017
## 578                      Dancing with the Birds  Documentary  October 23, 2019
## 579  Ben Platt: Live from Radio City Music Hall Concert Film      May 20, 2020
## 580       Taylor Swift: Reputation Stadium Tour Concert Film December 31, 2018
## 581 Winter on Fire: Ukraine's Fight for Freedom  Documentary   October 9, 2015
## 582                     Springsteen on Broadway One-man show December 16, 2018
## 583   Emicida: AmarElo - It's All For Yesterday  Documentary  December 8, 2020
## 584    David Attenborough: A Life on Our Planet  Documentary   October 4, 2020
##     Runtime IMDB.Score                 Language
## 575      89        8.2                  English
## 576     109        8.2                  Spanish
## 577     114        8.3                  English
## 578      51        8.3                  English
## 579      85        8.4                  English
## 580     125        8.4                  English
## 581      91        8.4 English/Ukranian/Russian
## 582     153        8.5                  English
## 583      89        8.6               Portuguese
## 584      83        9.0                  English
head(summary(df))
##     Title              Genre             Premiere            Runtime      
##  Length:584         Length:584         Length:584         Min.   :  4.00  
##  Class :character   Class :character   Class :character   1st Qu.: 86.00  
##  Mode  :character   Mode  :character   Mode  :character   Median : 97.00  
##                                                           Mean   : 93.58  
##                                                           3rd Qu.:108.00  
##                                                           Max.   :209.00  
##    IMDB.Score      Language        
##  Min.   :2.500   Length:584        
##  1st Qu.:5.700   Class :character  
##  Median :6.350   Mode  :character  
##  Mean   :6.272                     
##  3rd Qu.:7.000                     
##  Max.   :9.000
dim(df)
## [1] 584   6
dimnames(df)
## [[1]]
##   [1] "1"   "2"   "3"   "4"   "5"   "6"   "7"   "8"   "9"   "10"  "11"  "12" 
##  [13] "13"  "14"  "15"  "16"  "17"  "18"  "19"  "20"  "21"  "22"  "23"  "24" 
##  [25] "25"  "26"  "27"  "28"  "29"  "30"  "31"  "32"  "33"  "34"  "35"  "36" 
##  [37] "37"  "38"  "39"  "40"  "41"  "42"  "43"  "44"  "45"  "46"  "47"  "48" 
##  [49] "49"  "50"  "51"  "52"  "53"  "54"  "55"  "56"  "57"  "58"  "59"  "60" 
##  [61] "61"  "62"  "63"  "64"  "65"  "66"  "67"  "68"  "69"  "70"  "71"  "72" 
##  [73] "73"  "74"  "75"  "76"  "77"  "78"  "79"  "80"  "81"  "82"  "83"  "84" 
##  [85] "85"  "86"  "87"  "88"  "89"  "90"  "91"  "92"  "93"  "94"  "95"  "96" 
##  [97] "97"  "98"  "99"  "100" "101" "102" "103" "104" "105" "106" "107" "108"
## [109] "109" "110" "111" "112" "113" "114" "115" "116" "117" "118" "119" "120"
## [121] "121" "122" "123" "124" "125" "126" "127" "128" "129" "130" "131" "132"
## [133] "133" "134" "135" "136" "137" "138" "139" "140" "141" "142" "143" "144"
## [145] "145" "146" "147" "148" "149" "150" "151" "152" "153" "154" "155" "156"
## [157] "157" "158" "159" "160" "161" "162" "163" "164" "165" "166" "167" "168"
## [169] "169" "170" "171" "172" "173" "174" "175" "176" "177" "178" "179" "180"
## [181] "181" "182" "183" "184" "185" "186" "187" "188" "189" "190" "191" "192"
## [193] "193" "194" "195" "196" "197" "198" "199" "200" "201" "202" "203" "204"
## [205] "205" "206" "207" "208" "209" "210" "211" "212" "213" "214" "215" "216"
## [217] "217" "218" "219" "220" "221" "222" "223" "224" "225" "226" "227" "228"
## [229] "229" "230" "231" "232" "233" "234" "235" "236" "237" "238" "239" "240"
## [241] "241" "242" "243" "244" "245" "246" "247" "248" "249" "250" "251" "252"
## [253] "253" "254" "255" "256" "257" "258" "259" "260" "261" "262" "263" "264"
## [265] "265" "266" "267" "268" "269" "270" "271" "272" "273" "274" "275" "276"
## [277] "277" "278" "279" "280" "281" "282" "283" "284" "285" "286" "287" "288"
## [289] "289" "290" "291" "292" "293" "294" "295" "296" "297" "298" "299" "300"
## [301] "301" "302" "303" "304" "305" "306" "307" "308" "309" "310" "311" "312"
## [313] "313" "314" "315" "316" "317" "318" "319" "320" "321" "322" "323" "324"
## [325] "325" "326" "327" "328" "329" "330" "331" "332" "333" "334" "335" "336"
## [337] "337" "338" "339" "340" "341" "342" "343" "344" "345" "346" "347" "348"
## [349] "349" "350" "351" "352" "353" "354" "355" "356" "357" "358" "359" "360"
## [361] "361" "362" "363" "364" "365" "366" "367" "368" "369" "370" "371" "372"
## [373] "373" "374" "375" "376" "377" "378" "379" "380" "381" "382" "383" "384"
## [385] "385" "386" "387" "388" "389" "390" "391" "392" "393" "394" "395" "396"
## [397] "397" "398" "399" "400" "401" "402" "403" "404" "405" "406" "407" "408"
## [409] "409" "410" "411" "412" "413" "414" "415" "416" "417" "418" "419" "420"
## [421] "421" "422" "423" "424" "425" "426" "427" "428" "429" "430" "431" "432"
## [433] "433" "434" "435" "436" "437" "438" "439" "440" "441" "442" "443" "444"
## [445] "445" "446" "447" "448" "449" "450" "451" "452" "453" "454" "455" "456"
## [457] "457" "458" "459" "460" "461" "462" "463" "464" "465" "466" "467" "468"
## [469] "469" "470" "471" "472" "473" "474" "475" "476" "477" "478" "479" "480"
## [481] "481" "482" "483" "484" "485" "486" "487" "488" "489" "490" "491" "492"
## [493] "493" "494" "495" "496" "497" "498" "499" "500" "501" "502" "503" "504"
## [505] "505" "506" "507" "508" "509" "510" "511" "512" "513" "514" "515" "516"
## [517] "517" "518" "519" "520" "521" "522" "523" "524" "525" "526" "527" "528"
## [529] "529" "530" "531" "532" "533" "534" "535" "536" "537" "538" "539" "540"
## [541] "541" "542" "543" "544" "545" "546" "547" "548" "549" "550" "551" "552"
## [553] "553" "554" "555" "556" "557" "558" "559" "560" "561" "562" "563" "564"
## [565] "565" "566" "567" "568" "569" "570" "571" "572" "573" "574" "575" "576"
## [577] "577" "578" "579" "580" "581" "582" "583" "584"
## 
## [[2]]
## [1] "Title"      "Genre"      "Premiere"   "Runtime"    "IMDB.Score"
## [6] "Language"
row(df)
##        [,1] [,2] [,3] [,4] [,5] [,6]
##   [1,]    1    1    1    1    1    1
##   [2,]    2    2    2    2    2    2
##   [3,]    3    3    3    3    3    3
##   [4,]    4    4    4    4    4    4
##   [5,]    5    5    5    5    5    5
##   [6,]    6    6    6    6    6    6
##   [7,]    7    7    7    7    7    7
##   [8,]    8    8    8    8    8    8
##   [9,]    9    9    9    9    9    9
##  [10,]   10   10   10   10   10   10
##  [11,]   11   11   11   11   11   11
##  [12,]   12   12   12   12   12   12
##  [13,]   13   13   13   13   13   13
##  [14,]   14   14   14   14   14   14
##  [15,]   15   15   15   15   15   15
##  [16,]   16   16   16   16   16   16
##  [17,]   17   17   17   17   17   17
##  [18,]   18   18   18   18   18   18
##  [19,]   19   19   19   19   19   19
##  [20,]   20   20   20   20   20   20
##  [21,]   21   21   21   21   21   21
##  [22,]   22   22   22   22   22   22
##  [23,]   23   23   23   23   23   23
##  [24,]   24   24   24   24   24   24
##  [25,]   25   25   25   25   25   25
##  [26,]   26   26   26   26   26   26
##  [27,]   27   27   27   27   27   27
##  [28,]   28   28   28   28   28   28
##  [29,]   29   29   29   29   29   29
##  [30,]   30   30   30   30   30   30
##  [31,]   31   31   31   31   31   31
##  [32,]   32   32   32   32   32   32
##  [33,]   33   33   33   33   33   33
##  [34,]   34   34   34   34   34   34
##  [35,]   35   35   35   35   35   35
##  [36,]   36   36   36   36   36   36
##  [37,]   37   37   37   37   37   37
##  [38,]   38   38   38   38   38   38
##  [39,]   39   39   39   39   39   39
##  [40,]   40   40   40   40   40   40
##  [41,]   41   41   41   41   41   41
##  [42,]   42   42   42   42   42   42
##  [43,]   43   43   43   43   43   43
##  [44,]   44   44   44   44   44   44
##  [45,]   45   45   45   45   45   45
##  [46,]   46   46   46   46   46   46
##  [47,]   47   47   47   47   47   47
##  [48,]   48   48   48   48   48   48
##  [49,]   49   49   49   49   49   49
##  [50,]   50   50   50   50   50   50
##  [51,]   51   51   51   51   51   51
##  [52,]   52   52   52   52   52   52
##  [53,]   53   53   53   53   53   53
##  [54,]   54   54   54   54   54   54
##  [55,]   55   55   55   55   55   55
##  [56,]   56   56   56   56   56   56
##  [57,]   57   57   57   57   57   57
##  [58,]   58   58   58   58   58   58
##  [59,]   59   59   59   59   59   59
##  [60,]   60   60   60   60   60   60
##  [61,]   61   61   61   61   61   61
##  [62,]   62   62   62   62   62   62
##  [63,]   63   63   63   63   63   63
##  [64,]   64   64   64   64   64   64
##  [65,]   65   65   65   65   65   65
##  [66,]   66   66   66   66   66   66
##  [67,]   67   67   67   67   67   67
##  [68,]   68   68   68   68   68   68
##  [69,]   69   69   69   69   69   69
##  [70,]   70   70   70   70   70   70
##  [71,]   71   71   71   71   71   71
##  [72,]   72   72   72   72   72   72
##  [73,]   73   73   73   73   73   73
##  [74,]   74   74   74   74   74   74
##  [75,]   75   75   75   75   75   75
##  [76,]   76   76   76   76   76   76
##  [77,]   77   77   77   77   77   77
##  [78,]   78   78   78   78   78   78
##  [79,]   79   79   79   79   79   79
##  [80,]   80   80   80   80   80   80
##  [81,]   81   81   81   81   81   81
##  [82,]   82   82   82   82   82   82
##  [83,]   83   83   83   83   83   83
##  [84,]   84   84   84   84   84   84
##  [85,]   85   85   85   85   85   85
##  [86,]   86   86   86   86   86   86
##  [87,]   87   87   87   87   87   87
##  [88,]   88   88   88   88   88   88
##  [89,]   89   89   89   89   89   89
##  [90,]   90   90   90   90   90   90
##  [91,]   91   91   91   91   91   91
##  [92,]   92   92   92   92   92   92
##  [93,]   93   93   93   93   93   93
##  [94,]   94   94   94   94   94   94
##  [95,]   95   95   95   95   95   95
##  [96,]   96   96   96   96   96   96
##  [97,]   97   97   97   97   97   97
##  [98,]   98   98   98   98   98   98
##  [99,]   99   99   99   99   99   99
## [100,]  100  100  100  100  100  100
## [101,]  101  101  101  101  101  101
## [102,]  102  102  102  102  102  102
## [103,]  103  103  103  103  103  103
## [104,]  104  104  104  104  104  104
## [105,]  105  105  105  105  105  105
## [106,]  106  106  106  106  106  106
## [107,]  107  107  107  107  107  107
## [108,]  108  108  108  108  108  108
## [109,]  109  109  109  109  109  109
## [110,]  110  110  110  110  110  110
## [111,]  111  111  111  111  111  111
## [112,]  112  112  112  112  112  112
## [113,]  113  113  113  113  113  113
## [114,]  114  114  114  114  114  114
## [115,]  115  115  115  115  115  115
## [116,]  116  116  116  116  116  116
## [117,]  117  117  117  117  117  117
## [118,]  118  118  118  118  118  118
## [119,]  119  119  119  119  119  119
## [120,]  120  120  120  120  120  120
## [121,]  121  121  121  121  121  121
## [122,]  122  122  122  122  122  122
## [123,]  123  123  123  123  123  123
## [124,]  124  124  124  124  124  124
## [125,]  125  125  125  125  125  125
## [126,]  126  126  126  126  126  126
## [127,]  127  127  127  127  127  127
## [128,]  128  128  128  128  128  128
## [129,]  129  129  129  129  129  129
## [130,]  130  130  130  130  130  130
## [131,]  131  131  131  131  131  131
## [132,]  132  132  132  132  132  132
## [133,]  133  133  133  133  133  133
## [134,]  134  134  134  134  134  134
## [135,]  135  135  135  135  135  135
## [136,]  136  136  136  136  136  136
## [137,]  137  137  137  137  137  137
## [138,]  138  138  138  138  138  138
## [139,]  139  139  139  139  139  139
## [140,]  140  140  140  140  140  140
## [141,]  141  141  141  141  141  141
## [142,]  142  142  142  142  142  142
## [143,]  143  143  143  143  143  143
## [144,]  144  144  144  144  144  144
## [145,]  145  145  145  145  145  145
## [146,]  146  146  146  146  146  146
## [147,]  147  147  147  147  147  147
## [148,]  148  148  148  148  148  148
## [149,]  149  149  149  149  149  149
## [150,]  150  150  150  150  150  150
## [151,]  151  151  151  151  151  151
## [152,]  152  152  152  152  152  152
## [153,]  153  153  153  153  153  153
## [154,]  154  154  154  154  154  154
## [155,]  155  155  155  155  155  155
## [156,]  156  156  156  156  156  156
## [157,]  157  157  157  157  157  157
## [158,]  158  158  158  158  158  158
## [159,]  159  159  159  159  159  159
## [160,]  160  160  160  160  160  160
## [161,]  161  161  161  161  161  161
## [162,]  162  162  162  162  162  162
## [163,]  163  163  163  163  163  163
## [164,]  164  164  164  164  164  164
## [165,]  165  165  165  165  165  165
## [166,]  166  166  166  166  166  166
## [167,]  167  167  167  167  167  167
## [168,]  168  168  168  168  168  168
## [169,]  169  169  169  169  169  169
## [170,]  170  170  170  170  170  170
## [171,]  171  171  171  171  171  171
## [172,]  172  172  172  172  172  172
## [173,]  173  173  173  173  173  173
## [174,]  174  174  174  174  174  174
## [175,]  175  175  175  175  175  175
## [176,]  176  176  176  176  176  176
## [177,]  177  177  177  177  177  177
## [178,]  178  178  178  178  178  178
## [179,]  179  179  179  179  179  179
## [180,]  180  180  180  180  180  180
## [181,]  181  181  181  181  181  181
## [182,]  182  182  182  182  182  182
## [183,]  183  183  183  183  183  183
## [184,]  184  184  184  184  184  184
## [185,]  185  185  185  185  185  185
## [186,]  186  186  186  186  186  186
## [187,]  187  187  187  187  187  187
## [188,]  188  188  188  188  188  188
## [189,]  189  189  189  189  189  189
## [190,]  190  190  190  190  190  190
## [191,]  191  191  191  191  191  191
## [192,]  192  192  192  192  192  192
## [193,]  193  193  193  193  193  193
## [194,]  194  194  194  194  194  194
## [195,]  195  195  195  195  195  195
## [196,]  196  196  196  196  196  196
## [197,]  197  197  197  197  197  197
## [198,]  198  198  198  198  198  198
## [199,]  199  199  199  199  199  199
## [200,]  200  200  200  200  200  200
## [201,]  201  201  201  201  201  201
## [202,]  202  202  202  202  202  202
## [203,]  203  203  203  203  203  203
## [204,]  204  204  204  204  204  204
## [205,]  205  205  205  205  205  205
## [206,]  206  206  206  206  206  206
## [207,]  207  207  207  207  207  207
## [208,]  208  208  208  208  208  208
## [209,]  209  209  209  209  209  209
## [210,]  210  210  210  210  210  210
## [211,]  211  211  211  211  211  211
## [212,]  212  212  212  212  212  212
## [213,]  213  213  213  213  213  213
## [214,]  214  214  214  214  214  214
## [215,]  215  215  215  215  215  215
## [216,]  216  216  216  216  216  216
## [217,]  217  217  217  217  217  217
## [218,]  218  218  218  218  218  218
## [219,]  219  219  219  219  219  219
## [220,]  220  220  220  220  220  220
## [221,]  221  221  221  221  221  221
## [222,]  222  222  222  222  222  222
## [223,]  223  223  223  223  223  223
## [224,]  224  224  224  224  224  224
## [225,]  225  225  225  225  225  225
## [226,]  226  226  226  226  226  226
## [227,]  227  227  227  227  227  227
## [228,]  228  228  228  228  228  228
## [229,]  229  229  229  229  229  229
## [230,]  230  230  230  230  230  230
## [231,]  231  231  231  231  231  231
## [232,]  232  232  232  232  232  232
## [233,]  233  233  233  233  233  233
## [234,]  234  234  234  234  234  234
## [235,]  235  235  235  235  235  235
## [236,]  236  236  236  236  236  236
## [237,]  237  237  237  237  237  237
## [238,]  238  238  238  238  238  238
## [239,]  239  239  239  239  239  239
## [240,]  240  240  240  240  240  240
## [241,]  241  241  241  241  241  241
## [242,]  242  242  242  242  242  242
## [243,]  243  243  243  243  243  243
## [244,]  244  244  244  244  244  244
## [245,]  245  245  245  245  245  245
## [246,]  246  246  246  246  246  246
## [247,]  247  247  247  247  247  247
## [248,]  248  248  248  248  248  248
## [249,]  249  249  249  249  249  249
## [250,]  250  250  250  250  250  250
## [251,]  251  251  251  251  251  251
## [252,]  252  252  252  252  252  252
## [253,]  253  253  253  253  253  253
## [254,]  254  254  254  254  254  254
## [255,]  255  255  255  255  255  255
## [256,]  256  256  256  256  256  256
## [257,]  257  257  257  257  257  257
## [258,]  258  258  258  258  258  258
## [259,]  259  259  259  259  259  259
## [260,]  260  260  260  260  260  260
## [261,]  261  261  261  261  261  261
## [262,]  262  262  262  262  262  262
## [263,]  263  263  263  263  263  263
## [264,]  264  264  264  264  264  264
## [265,]  265  265  265  265  265  265
## [266,]  266  266  266  266  266  266
## [267,]  267  267  267  267  267  267
## [268,]  268  268  268  268  268  268
## [269,]  269  269  269  269  269  269
## [270,]  270  270  270  270  270  270
## [271,]  271  271  271  271  271  271
## [272,]  272  272  272  272  272  272
## [273,]  273  273  273  273  273  273
## [274,]  274  274  274  274  274  274
## [275,]  275  275  275  275  275  275
## [276,]  276  276  276  276  276  276
## [277,]  277  277  277  277  277  277
## [278,]  278  278  278  278  278  278
## [279,]  279  279  279  279  279  279
## [280,]  280  280  280  280  280  280
## [281,]  281  281  281  281  281  281
## [282,]  282  282  282  282  282  282
## [283,]  283  283  283  283  283  283
## [284,]  284  284  284  284  284  284
## [285,]  285  285  285  285  285  285
## [286,]  286  286  286  286  286  286
## [287,]  287  287  287  287  287  287
## [288,]  288  288  288  288  288  288
## [289,]  289  289  289  289  289  289
## [290,]  290  290  290  290  290  290
## [291,]  291  291  291  291  291  291
## [292,]  292  292  292  292  292  292
## [293,]  293  293  293  293  293  293
## [294,]  294  294  294  294  294  294
## [295,]  295  295  295  295  295  295
## [296,]  296  296  296  296  296  296
## [297,]  297  297  297  297  297  297
## [298,]  298  298  298  298  298  298
## [299,]  299  299  299  299  299  299
## [300,]  300  300  300  300  300  300
## [301,]  301  301  301  301  301  301
## [302,]  302  302  302  302  302  302
## [303,]  303  303  303  303  303  303
## [304,]  304  304  304  304  304  304
## [305,]  305  305  305  305  305  305
## [306,]  306  306  306  306  306  306
## [307,]  307  307  307  307  307  307
## [308,]  308  308  308  308  308  308
## [309,]  309  309  309  309  309  309
## [310,]  310  310  310  310  310  310
## [311,]  311  311  311  311  311  311
## [312,]  312  312  312  312  312  312
## [313,]  313  313  313  313  313  313
## [314,]  314  314  314  314  314  314
## [315,]  315  315  315  315  315  315
## [316,]  316  316  316  316  316  316
## [317,]  317  317  317  317  317  317
## [318,]  318  318  318  318  318  318
## [319,]  319  319  319  319  319  319
## [320,]  320  320  320  320  320  320
## [321,]  321  321  321  321  321  321
## [322,]  322  322  322  322  322  322
## [323,]  323  323  323  323  323  323
## [324,]  324  324  324  324  324  324
## [325,]  325  325  325  325  325  325
## [326,]  326  326  326  326  326  326
## [327,]  327  327  327  327  327  327
## [328,]  328  328  328  328  328  328
## [329,]  329  329  329  329  329  329
## [330,]  330  330  330  330  330  330
## [331,]  331  331  331  331  331  331
## [332,]  332  332  332  332  332  332
## [333,]  333  333  333  333  333  333
## [334,]  334  334  334  334  334  334
## [335,]  335  335  335  335  335  335
## [336,]  336  336  336  336  336  336
## [337,]  337  337  337  337  337  337
## [338,]  338  338  338  338  338  338
## [339,]  339  339  339  339  339  339
## [340,]  340  340  340  340  340  340
## [341,]  341  341  341  341  341  341
## [342,]  342  342  342  342  342  342
## [343,]  343  343  343  343  343  343
## [344,]  344  344  344  344  344  344
## [345,]  345  345  345  345  345  345
## [346,]  346  346  346  346  346  346
## [347,]  347  347  347  347  347  347
## [348,]  348  348  348  348  348  348
## [349,]  349  349  349  349  349  349
## [350,]  350  350  350  350  350  350
## [351,]  351  351  351  351  351  351
## [352,]  352  352  352  352  352  352
## [353,]  353  353  353  353  353  353
## [354,]  354  354  354  354  354  354
## [355,]  355  355  355  355  355  355
## [356,]  356  356  356  356  356  356
## [357,]  357  357  357  357  357  357
## [358,]  358  358  358  358  358  358
## [359,]  359  359  359  359  359  359
## [360,]  360  360  360  360  360  360
## [361,]  361  361  361  361  361  361
## [362,]  362  362  362  362  362  362
## [363,]  363  363  363  363  363  363
## [364,]  364  364  364  364  364  364
## [365,]  365  365  365  365  365  365
## [366,]  366  366  366  366  366  366
## [367,]  367  367  367  367  367  367
## [368,]  368  368  368  368  368  368
## [369,]  369  369  369  369  369  369
## [370,]  370  370  370  370  370  370
## [371,]  371  371  371  371  371  371
## [372,]  372  372  372  372  372  372
## [373,]  373  373  373  373  373  373
## [374,]  374  374  374  374  374  374
## [375,]  375  375  375  375  375  375
## [376,]  376  376  376  376  376  376
## [377,]  377  377  377  377  377  377
## [378,]  378  378  378  378  378  378
## [379,]  379  379  379  379  379  379
## [380,]  380  380  380  380  380  380
## [381,]  381  381  381  381  381  381
## [382,]  382  382  382  382  382  382
## [383,]  383  383  383  383  383  383
## [384,]  384  384  384  384  384  384
## [385,]  385  385  385  385  385  385
## [386,]  386  386  386  386  386  386
## [387,]  387  387  387  387  387  387
## [388,]  388  388  388  388  388  388
## [389,]  389  389  389  389  389  389
## [390,]  390  390  390  390  390  390
## [391,]  391  391  391  391  391  391
## [392,]  392  392  392  392  392  392
## [393,]  393  393  393  393  393  393
## [394,]  394  394  394  394  394  394
## [395,]  395  395  395  395  395  395
## [396,]  396  396  396  396  396  396
## [397,]  397  397  397  397  397  397
## [398,]  398  398  398  398  398  398
## [399,]  399  399  399  399  399  399
## [400,]  400  400  400  400  400  400
## [401,]  401  401  401  401  401  401
## [402,]  402  402  402  402  402  402
## [403,]  403  403  403  403  403  403
## [404,]  404  404  404  404  404  404
## [405,]  405  405  405  405  405  405
## [406,]  406  406  406  406  406  406
## [407,]  407  407  407  407  407  407
## [408,]  408  408  408  408  408  408
## [409,]  409  409  409  409  409  409
## [410,]  410  410  410  410  410  410
## [411,]  411  411  411  411  411  411
## [412,]  412  412  412  412  412  412
## [413,]  413  413  413  413  413  413
## [414,]  414  414  414  414  414  414
## [415,]  415  415  415  415  415  415
## [416,]  416  416  416  416  416  416
## [417,]  417  417  417  417  417  417
## [418,]  418  418  418  418  418  418
## [419,]  419  419  419  419  419  419
## [420,]  420  420  420  420  420  420
## [421,]  421  421  421  421  421  421
## [422,]  422  422  422  422  422  422
## [423,]  423  423  423  423  423  423
## [424,]  424  424  424  424  424  424
## [425,]  425  425  425  425  425  425
## [426,]  426  426  426  426  426  426
## [427,]  427  427  427  427  427  427
## [428,]  428  428  428  428  428  428
## [429,]  429  429  429  429  429  429
## [430,]  430  430  430  430  430  430
## [431,]  431  431  431  431  431  431
## [432,]  432  432  432  432  432  432
## [433,]  433  433  433  433  433  433
## [434,]  434  434  434  434  434  434
## [435,]  435  435  435  435  435  435
## [436,]  436  436  436  436  436  436
## [437,]  437  437  437  437  437  437
## [438,]  438  438  438  438  438  438
## [439,]  439  439  439  439  439  439
## [440,]  440  440  440  440  440  440
## [441,]  441  441  441  441  441  441
## [442,]  442  442  442  442  442  442
## [443,]  443  443  443  443  443  443
## [444,]  444  444  444  444  444  444
## [445,]  445  445  445  445  445  445
## [446,]  446  446  446  446  446  446
## [447,]  447  447  447  447  447  447
## [448,]  448  448  448  448  448  448
## [449,]  449  449  449  449  449  449
## [450,]  450  450  450  450  450  450
## [451,]  451  451  451  451  451  451
## [452,]  452  452  452  452  452  452
## [453,]  453  453  453  453  453  453
## [454,]  454  454  454  454  454  454
## [455,]  455  455  455  455  455  455
## [456,]  456  456  456  456  456  456
## [457,]  457  457  457  457  457  457
## [458,]  458  458  458  458  458  458
## [459,]  459  459  459  459  459  459
## [460,]  460  460  460  460  460  460
## [461,]  461  461  461  461  461  461
## [462,]  462  462  462  462  462  462
## [463,]  463  463  463  463  463  463
## [464,]  464  464  464  464  464  464
## [465,]  465  465  465  465  465  465
## [466,]  466  466  466  466  466  466
## [467,]  467  467  467  467  467  467
## [468,]  468  468  468  468  468  468
## [469,]  469  469  469  469  469  469
## [470,]  470  470  470  470  470  470
## [471,]  471  471  471  471  471  471
## [472,]  472  472  472  472  472  472
## [473,]  473  473  473  473  473  473
## [474,]  474  474  474  474  474  474
## [475,]  475  475  475  475  475  475
## [476,]  476  476  476  476  476  476
## [477,]  477  477  477  477  477  477
## [478,]  478  478  478  478  478  478
## [479,]  479  479  479  479  479  479
## [480,]  480  480  480  480  480  480
## [481,]  481  481  481  481  481  481
## [482,]  482  482  482  482  482  482
## [483,]  483  483  483  483  483  483
## [484,]  484  484  484  484  484  484
## [485,]  485  485  485  485  485  485
## [486,]  486  486  486  486  486  486
## [487,]  487  487  487  487  487  487
## [488,]  488  488  488  488  488  488
## [489,]  489  489  489  489  489  489
## [490,]  490  490  490  490  490  490
## [491,]  491  491  491  491  491  491
## [492,]  492  492  492  492  492  492
## [493,]  493  493  493  493  493  493
## [494,]  494  494  494  494  494  494
## [495,]  495  495  495  495  495  495
## [496,]  496  496  496  496  496  496
## [497,]  497  497  497  497  497  497
## [498,]  498  498  498  498  498  498
## [499,]  499  499  499  499  499  499
## [500,]  500  500  500  500  500  500
## [501,]  501  501  501  501  501  501
## [502,]  502  502  502  502  502  502
## [503,]  503  503  503  503  503  503
## [504,]  504  504  504  504  504  504
## [505,]  505  505  505  505  505  505
## [506,]  506  506  506  506  506  506
## [507,]  507  507  507  507  507  507
## [508,]  508  508  508  508  508  508
## [509,]  509  509  509  509  509  509
## [510,]  510  510  510  510  510  510
## [511,]  511  511  511  511  511  511
## [512,]  512  512  512  512  512  512
## [513,]  513  513  513  513  513  513
## [514,]  514  514  514  514  514  514
## [515,]  515  515  515  515  515  515
## [516,]  516  516  516  516  516  516
## [517,]  517  517  517  517  517  517
## [518,]  518  518  518  518  518  518
## [519,]  519  519  519  519  519  519
## [520,]  520  520  520  520  520  520
## [521,]  521  521  521  521  521  521
## [522,]  522  522  522  522  522  522
## [523,]  523  523  523  523  523  523
## [524,]  524  524  524  524  524  524
## [525,]  525  525  525  525  525  525
## [526,]  526  526  526  526  526  526
## [527,]  527  527  527  527  527  527
## [528,]  528  528  528  528  528  528
## [529,]  529  529  529  529  529  529
## [530,]  530  530  530  530  530  530
## [531,]  531  531  531  531  531  531
## [532,]  532  532  532  532  532  532
## [533,]  533  533  533  533  533  533
## [534,]  534  534  534  534  534  534
## [535,]  535  535  535  535  535  535
## [536,]  536  536  536  536  536  536
## [537,]  537  537  537  537  537  537
## [538,]  538  538  538  538  538  538
## [539,]  539  539  539  539  539  539
## [540,]  540  540  540  540  540  540
## [541,]  541  541  541  541  541  541
## [542,]  542  542  542  542  542  542
## [543,]  543  543  543  543  543  543
## [544,]  544  544  544  544  544  544
## [545,]  545  545  545  545  545  545
## [546,]  546  546  546  546  546  546
## [547,]  547  547  547  547  547  547
## [548,]  548  548  548  548  548  548
## [549,]  549  549  549  549  549  549
## [550,]  550  550  550  550  550  550
## [551,]  551  551  551  551  551  551
## [552,]  552  552  552  552  552  552
## [553,]  553  553  553  553  553  553
## [554,]  554  554  554  554  554  554
## [555,]  555  555  555  555  555  555
## [556,]  556  556  556  556  556  556
## [557,]  557  557  557  557  557  557
## [558,]  558  558  558  558  558  558
## [559,]  559  559  559  559  559  559
## [560,]  560  560  560  560  560  560
## [561,]  561  561  561  561  561  561
## [562,]  562  562  562  562  562  562
## [563,]  563  563  563  563  563  563
## [564,]  564  564  564  564  564  564
## [565,]  565  565  565  565  565  565
## [566,]  566  566  566  566  566  566
## [567,]  567  567  567  567  567  567
## [568,]  568  568  568  568  568  568
## [569,]  569  569  569  569  569  569
## [570,]  570  570  570  570  570  570
## [571,]  571  571  571  571  571  571
## [572,]  572  572  572  572  572  572
## [573,]  573  573  573  573  573  573
## [574,]  574  574  574  574  574  574
## [575,]  575  575  575  575  575  575
## [576,]  576  576  576  576  576  576
## [577,]  577  577  577  577  577  577
## [578,]  578  578  578  578  578  578
## [579,]  579  579  579  579  579  579
## [580,]  580  580  580  580  580  580
## [581,]  581  581  581  581  581  581
## [582,]  582  582  582  582  582  582
## [583,]  583  583  583  583  583  583
## [584,]  584  584  584  584  584  584
row.names(df)
##   [1] "1"   "2"   "3"   "4"   "5"   "6"   "7"   "8"   "9"   "10"  "11"  "12" 
##  [13] "13"  "14"  "15"  "16"  "17"  "18"  "19"  "20"  "21"  "22"  "23"  "24" 
##  [25] "25"  "26"  "27"  "28"  "29"  "30"  "31"  "32"  "33"  "34"  "35"  "36" 
##  [37] "37"  "38"  "39"  "40"  "41"  "42"  "43"  "44"  "45"  "46"  "47"  "48" 
##  [49] "49"  "50"  "51"  "52"  "53"  "54"  "55"  "56"  "57"  "58"  "59"  "60" 
##  [61] "61"  "62"  "63"  "64"  "65"  "66"  "67"  "68"  "69"  "70"  "71"  "72" 
##  [73] "73"  "74"  "75"  "76"  "77"  "78"  "79"  "80"  "81"  "82"  "83"  "84" 
##  [85] "85"  "86"  "87"  "88"  "89"  "90"  "91"  "92"  "93"  "94"  "95"  "96" 
##  [97] "97"  "98"  "99"  "100" "101" "102" "103" "104" "105" "106" "107" "108"
## [109] "109" "110" "111" "112" "113" "114" "115" "116" "117" "118" "119" "120"
## [121] "121" "122" "123" "124" "125" "126" "127" "128" "129" "130" "131" "132"
## [133] "133" "134" "135" "136" "137" "138" "139" "140" "141" "142" "143" "144"
## [145] "145" "146" "147" "148" "149" "150" "151" "152" "153" "154" "155" "156"
## [157] "157" "158" "159" "160" "161" "162" "163" "164" "165" "166" "167" "168"
## [169] "169" "170" "171" "172" "173" "174" "175" "176" "177" "178" "179" "180"
## [181] "181" "182" "183" "184" "185" "186" "187" "188" "189" "190" "191" "192"
## [193] "193" "194" "195" "196" "197" "198" "199" "200" "201" "202" "203" "204"
## [205] "205" "206" "207" "208" "209" "210" "211" "212" "213" "214" "215" "216"
## [217] "217" "218" "219" "220" "221" "222" "223" "224" "225" "226" "227" "228"
## [229] "229" "230" "231" "232" "233" "234" "235" "236" "237" "238" "239" "240"
## [241] "241" "242" "243" "244" "245" "246" "247" "248" "249" "250" "251" "252"
## [253] "253" "254" "255" "256" "257" "258" "259" "260" "261" "262" "263" "264"
## [265] "265" "266" "267" "268" "269" "270" "271" "272" "273" "274" "275" "276"
## [277] "277" "278" "279" "280" "281" "282" "283" "284" "285" "286" "287" "288"
## [289] "289" "290" "291" "292" "293" "294" "295" "296" "297" "298" "299" "300"
## [301] "301" "302" "303" "304" "305" "306" "307" "308" "309" "310" "311" "312"
## [313] "313" "314" "315" "316" "317" "318" "319" "320" "321" "322" "323" "324"
## [325] "325" "326" "327" "328" "329" "330" "331" "332" "333" "334" "335" "336"
## [337] "337" "338" "339" "340" "341" "342" "343" "344" "345" "346" "347" "348"
## [349] "349" "350" "351" "352" "353" "354" "355" "356" "357" "358" "359" "360"
## [361] "361" "362" "363" "364" "365" "366" "367" "368" "369" "370" "371" "372"
## [373] "373" "374" "375" "376" "377" "378" "379" "380" "381" "382" "383" "384"
## [385] "385" "386" "387" "388" "389" "390" "391" "392" "393" "394" "395" "396"
## [397] "397" "398" "399" "400" "401" "402" "403" "404" "405" "406" "407" "408"
## [409] "409" "410" "411" "412" "413" "414" "415" "416" "417" "418" "419" "420"
## [421] "421" "422" "423" "424" "425" "426" "427" "428" "429" "430" "431" "432"
## [433] "433" "434" "435" "436" "437" "438" "439" "440" "441" "442" "443" "444"
## [445] "445" "446" "447" "448" "449" "450" "451" "452" "453" "454" "455" "456"
## [457] "457" "458" "459" "460" "461" "462" "463" "464" "465" "466" "467" "468"
## [469] "469" "470" "471" "472" "473" "474" "475" "476" "477" "478" "479" "480"
## [481] "481" "482" "483" "484" "485" "486" "487" "488" "489" "490" "491" "492"
## [493] "493" "494" "495" "496" "497" "498" "499" "500" "501" "502" "503" "504"
## [505] "505" "506" "507" "508" "509" "510" "511" "512" "513" "514" "515" "516"
## [517] "517" "518" "519" "520" "521" "522" "523" "524" "525" "526" "527" "528"
## [529] "529" "530" "531" "532" "533" "534" "535" "536" "537" "538" "539" "540"
## [541] "541" "542" "543" "544" "545" "546" "547" "548" "549" "550" "551" "552"
## [553] "553" "554" "555" "556" "557" "558" "559" "560" "561" "562" "563" "564"
## [565] "565" "566" "567" "568" "569" "570" "571" "572" "573" "574" "575" "576"
## [577] "577" "578" "579" "580" "581" "582" "583" "584"
col(df)
##        [,1] [,2] [,3] [,4] [,5] [,6]
##   [1,]    1    2    3    4    5    6
##   [2,]    1    2    3    4    5    6
##   [3,]    1    2    3    4    5    6
##   [4,]    1    2    3    4    5    6
##   [5,]    1    2    3    4    5    6
##   [6,]    1    2    3    4    5    6
##   [7,]    1    2    3    4    5    6
##   [8,]    1    2    3    4    5    6
##   [9,]    1    2    3    4    5    6
##  [10,]    1    2    3    4    5    6
##  [11,]    1    2    3    4    5    6
##  [12,]    1    2    3    4    5    6
##  [13,]    1    2    3    4    5    6
##  [14,]    1    2    3    4    5    6
##  [15,]    1    2    3    4    5    6
##  [16,]    1    2    3    4    5    6
##  [17,]    1    2    3    4    5    6
##  [18,]    1    2    3    4    5    6
##  [19,]    1    2    3    4    5    6
##  [20,]    1    2    3    4    5    6
##  [21,]    1    2    3    4    5    6
##  [22,]    1    2    3    4    5    6
##  [23,]    1    2    3    4    5    6
##  [24,]    1    2    3    4    5    6
##  [25,]    1    2    3    4    5    6
##  [26,]    1    2    3    4    5    6
##  [27,]    1    2    3    4    5    6
##  [28,]    1    2    3    4    5    6
##  [29,]    1    2    3    4    5    6
##  [30,]    1    2    3    4    5    6
##  [31,]    1    2    3    4    5    6
##  [32,]    1    2    3    4    5    6
##  [33,]    1    2    3    4    5    6
##  [34,]    1    2    3    4    5    6
##  [35,]    1    2    3    4    5    6
##  [36,]    1    2    3    4    5    6
##  [37,]    1    2    3    4    5    6
##  [38,]    1    2    3    4    5    6
##  [39,]    1    2    3    4    5    6
##  [40,]    1    2    3    4    5    6
##  [41,]    1    2    3    4    5    6
##  [42,]    1    2    3    4    5    6
##  [43,]    1    2    3    4    5    6
##  [44,]    1    2    3    4    5    6
##  [45,]    1    2    3    4    5    6
##  [46,]    1    2    3    4    5    6
##  [47,]    1    2    3    4    5    6
##  [48,]    1    2    3    4    5    6
##  [49,]    1    2    3    4    5    6
##  [50,]    1    2    3    4    5    6
##  [51,]    1    2    3    4    5    6
##  [52,]    1    2    3    4    5    6
##  [53,]    1    2    3    4    5    6
##  [54,]    1    2    3    4    5    6
##  [55,]    1    2    3    4    5    6
##  [56,]    1    2    3    4    5    6
##  [57,]    1    2    3    4    5    6
##  [58,]    1    2    3    4    5    6
##  [59,]    1    2    3    4    5    6
##  [60,]    1    2    3    4    5    6
##  [61,]    1    2    3    4    5    6
##  [62,]    1    2    3    4    5    6
##  [63,]    1    2    3    4    5    6
##  [64,]    1    2    3    4    5    6
##  [65,]    1    2    3    4    5    6
##  [66,]    1    2    3    4    5    6
##  [67,]    1    2    3    4    5    6
##  [68,]    1    2    3    4    5    6
##  [69,]    1    2    3    4    5    6
##  [70,]    1    2    3    4    5    6
##  [71,]    1    2    3    4    5    6
##  [72,]    1    2    3    4    5    6
##  [73,]    1    2    3    4    5    6
##  [74,]    1    2    3    4    5    6
##  [75,]    1    2    3    4    5    6
##  [76,]    1    2    3    4    5    6
##  [77,]    1    2    3    4    5    6
##  [78,]    1    2    3    4    5    6
##  [79,]    1    2    3    4    5    6
##  [80,]    1    2    3    4    5    6
##  [81,]    1    2    3    4    5    6
##  [82,]    1    2    3    4    5    6
##  [83,]    1    2    3    4    5    6
##  [84,]    1    2    3    4    5    6
##  [85,]    1    2    3    4    5    6
##  [86,]    1    2    3    4    5    6
##  [87,]    1    2    3    4    5    6
##  [88,]    1    2    3    4    5    6
##  [89,]    1    2    3    4    5    6
##  [90,]    1    2    3    4    5    6
##  [91,]    1    2    3    4    5    6
##  [92,]    1    2    3    4    5    6
##  [93,]    1    2    3    4    5    6
##  [94,]    1    2    3    4    5    6
##  [95,]    1    2    3    4    5    6
##  [96,]    1    2    3    4    5    6
##  [97,]    1    2    3    4    5    6
##  [98,]    1    2    3    4    5    6
##  [99,]    1    2    3    4    5    6
## [100,]    1    2    3    4    5    6
## [101,]    1    2    3    4    5    6
## [102,]    1    2    3    4    5    6
## [103,]    1    2    3    4    5    6
## [104,]    1    2    3    4    5    6
## [105,]    1    2    3    4    5    6
## [106,]    1    2    3    4    5    6
## [107,]    1    2    3    4    5    6
## [108,]    1    2    3    4    5    6
## [109,]    1    2    3    4    5    6
## [110,]    1    2    3    4    5    6
## [111,]    1    2    3    4    5    6
## [112,]    1    2    3    4    5    6
## [113,]    1    2    3    4    5    6
## [114,]    1    2    3    4    5    6
## [115,]    1    2    3    4    5    6
## [116,]    1    2    3    4    5    6
## [117,]    1    2    3    4    5    6
## [118,]    1    2    3    4    5    6
## [119,]    1    2    3    4    5    6
## [120,]    1    2    3    4    5    6
## [121,]    1    2    3    4    5    6
## [122,]    1    2    3    4    5    6
## [123,]    1    2    3    4    5    6
## [124,]    1    2    3    4    5    6
## [125,]    1    2    3    4    5    6
## [126,]    1    2    3    4    5    6
## [127,]    1    2    3    4    5    6
## [128,]    1    2    3    4    5    6
## [129,]    1    2    3    4    5    6
## [130,]    1    2    3    4    5    6
## [131,]    1    2    3    4    5    6
## [132,]    1    2    3    4    5    6
## [133,]    1    2    3    4    5    6
## [134,]    1    2    3    4    5    6
## [135,]    1    2    3    4    5    6
## [136,]    1    2    3    4    5    6
## [137,]    1    2    3    4    5    6
## [138,]    1    2    3    4    5    6
## [139,]    1    2    3    4    5    6
## [140,]    1    2    3    4    5    6
## [141,]    1    2    3    4    5    6
## [142,]    1    2    3    4    5    6
## [143,]    1    2    3    4    5    6
## [144,]    1    2    3    4    5    6
## [145,]    1    2    3    4    5    6
## [146,]    1    2    3    4    5    6
## [147,]    1    2    3    4    5    6
## [148,]    1    2    3    4    5    6
## [149,]    1    2    3    4    5    6
## [150,]    1    2    3    4    5    6
## [151,]    1    2    3    4    5    6
## [152,]    1    2    3    4    5    6
## [153,]    1    2    3    4    5    6
## [154,]    1    2    3    4    5    6
## [155,]    1    2    3    4    5    6
## [156,]    1    2    3    4    5    6
## [157,]    1    2    3    4    5    6
## [158,]    1    2    3    4    5    6
## [159,]    1    2    3    4    5    6
## [160,]    1    2    3    4    5    6
## [161,]    1    2    3    4    5    6
## [162,]    1    2    3    4    5    6
## [163,]    1    2    3    4    5    6
## [164,]    1    2    3    4    5    6
## [165,]    1    2    3    4    5    6
## [166,]    1    2    3    4    5    6
## [167,]    1    2    3    4    5    6
## [168,]    1    2    3    4    5    6
## [169,]    1    2    3    4    5    6
## [170,]    1    2    3    4    5    6
## [171,]    1    2    3    4    5    6
## [172,]    1    2    3    4    5    6
## [173,]    1    2    3    4    5    6
## [174,]    1    2    3    4    5    6
## [175,]    1    2    3    4    5    6
## [176,]    1    2    3    4    5    6
## [177,]    1    2    3    4    5    6
## [178,]    1    2    3    4    5    6
## [179,]    1    2    3    4    5    6
## [180,]    1    2    3    4    5    6
## [181,]    1    2    3    4    5    6
## [182,]    1    2    3    4    5    6
## [183,]    1    2    3    4    5    6
## [184,]    1    2    3    4    5    6
## [185,]    1    2    3    4    5    6
## [186,]    1    2    3    4    5    6
## [187,]    1    2    3    4    5    6
## [188,]    1    2    3    4    5    6
## [189,]    1    2    3    4    5    6
## [190,]    1    2    3    4    5    6
## [191,]    1    2    3    4    5    6
## [192,]    1    2    3    4    5    6
## [193,]    1    2    3    4    5    6
## [194,]    1    2    3    4    5    6
## [195,]    1    2    3    4    5    6
## [196,]    1    2    3    4    5    6
## [197,]    1    2    3    4    5    6
## [198,]    1    2    3    4    5    6
## [199,]    1    2    3    4    5    6
## [200,]    1    2    3    4    5    6
## [201,]    1    2    3    4    5    6
## [202,]    1    2    3    4    5    6
## [203,]    1    2    3    4    5    6
## [204,]    1    2    3    4    5    6
## [205,]    1    2    3    4    5    6
## [206,]    1    2    3    4    5    6
## [207,]    1    2    3    4    5    6
## [208,]    1    2    3    4    5    6
## [209,]    1    2    3    4    5    6
## [210,]    1    2    3    4    5    6
## [211,]    1    2    3    4    5    6
## [212,]    1    2    3    4    5    6
## [213,]    1    2    3    4    5    6
## [214,]    1    2    3    4    5    6
## [215,]    1    2    3    4    5    6
## [216,]    1    2    3    4    5    6
## [217,]    1    2    3    4    5    6
## [218,]    1    2    3    4    5    6
## [219,]    1    2    3    4    5    6
## [220,]    1    2    3    4    5    6
## [221,]    1    2    3    4    5    6
## [222,]    1    2    3    4    5    6
## [223,]    1    2    3    4    5    6
## [224,]    1    2    3    4    5    6
## [225,]    1    2    3    4    5    6
## [226,]    1    2    3    4    5    6
## [227,]    1    2    3    4    5    6
## [228,]    1    2    3    4    5    6
## [229,]    1    2    3    4    5    6
## [230,]    1    2    3    4    5    6
## [231,]    1    2    3    4    5    6
## [232,]    1    2    3    4    5    6
## [233,]    1    2    3    4    5    6
## [234,]    1    2    3    4    5    6
## [235,]    1    2    3    4    5    6
## [236,]    1    2    3    4    5    6
## [237,]    1    2    3    4    5    6
## [238,]    1    2    3    4    5    6
## [239,]    1    2    3    4    5    6
## [240,]    1    2    3    4    5    6
## [241,]    1    2    3    4    5    6
## [242,]    1    2    3    4    5    6
## [243,]    1    2    3    4    5    6
## [244,]    1    2    3    4    5    6
## [245,]    1    2    3    4    5    6
## [246,]    1    2    3    4    5    6
## [247,]    1    2    3    4    5    6
## [248,]    1    2    3    4    5    6
## [249,]    1    2    3    4    5    6
## [250,]    1    2    3    4    5    6
## [251,]    1    2    3    4    5    6
## [252,]    1    2    3    4    5    6
## [253,]    1    2    3    4    5    6
## [254,]    1    2    3    4    5    6
## [255,]    1    2    3    4    5    6
## [256,]    1    2    3    4    5    6
## [257,]    1    2    3    4    5    6
## [258,]    1    2    3    4    5    6
## [259,]    1    2    3    4    5    6
## [260,]    1    2    3    4    5    6
## [261,]    1    2    3    4    5    6
## [262,]    1    2    3    4    5    6
## [263,]    1    2    3    4    5    6
## [264,]    1    2    3    4    5    6
## [265,]    1    2    3    4    5    6
## [266,]    1    2    3    4    5    6
## [267,]    1    2    3    4    5    6
## [268,]    1    2    3    4    5    6
## [269,]    1    2    3    4    5    6
## [270,]    1    2    3    4    5    6
## [271,]    1    2    3    4    5    6
## [272,]    1    2    3    4    5    6
## [273,]    1    2    3    4    5    6
## [274,]    1    2    3    4    5    6
## [275,]    1    2    3    4    5    6
## [276,]    1    2    3    4    5    6
## [277,]    1    2    3    4    5    6
## [278,]    1    2    3    4    5    6
## [279,]    1    2    3    4    5    6
## [280,]    1    2    3    4    5    6
## [281,]    1    2    3    4    5    6
## [282,]    1    2    3    4    5    6
## [283,]    1    2    3    4    5    6
## [284,]    1    2    3    4    5    6
## [285,]    1    2    3    4    5    6
## [286,]    1    2    3    4    5    6
## [287,]    1    2    3    4    5    6
## [288,]    1    2    3    4    5    6
## [289,]    1    2    3    4    5    6
## [290,]    1    2    3    4    5    6
## [291,]    1    2    3    4    5    6
## [292,]    1    2    3    4    5    6
## [293,]    1    2    3    4    5    6
## [294,]    1    2    3    4    5    6
## [295,]    1    2    3    4    5    6
## [296,]    1    2    3    4    5    6
## [297,]    1    2    3    4    5    6
## [298,]    1    2    3    4    5    6
## [299,]    1    2    3    4    5    6
## [300,]    1    2    3    4    5    6
## [301,]    1    2    3    4    5    6
## [302,]    1    2    3    4    5    6
## [303,]    1    2    3    4    5    6
## [304,]    1    2    3    4    5    6
## [305,]    1    2    3    4    5    6
## [306,]    1    2    3    4    5    6
## [307,]    1    2    3    4    5    6
## [308,]    1    2    3    4    5    6
## [309,]    1    2    3    4    5    6
## [310,]    1    2    3    4    5    6
## [311,]    1    2    3    4    5    6
## [312,]    1    2    3    4    5    6
## [313,]    1    2    3    4    5    6
## [314,]    1    2    3    4    5    6
## [315,]    1    2    3    4    5    6
## [316,]    1    2    3    4    5    6
## [317,]    1    2    3    4    5    6
## [318,]    1    2    3    4    5    6
## [319,]    1    2    3    4    5    6
## [320,]    1    2    3    4    5    6
## [321,]    1    2    3    4    5    6
## [322,]    1    2    3    4    5    6
## [323,]    1    2    3    4    5    6
## [324,]    1    2    3    4    5    6
## [325,]    1    2    3    4    5    6
## [326,]    1    2    3    4    5    6
## [327,]    1    2    3    4    5    6
## [328,]    1    2    3    4    5    6
## [329,]    1    2    3    4    5    6
## [330,]    1    2    3    4    5    6
## [331,]    1    2    3    4    5    6
## [332,]    1    2    3    4    5    6
## [333,]    1    2    3    4    5    6
## [334,]    1    2    3    4    5    6
## [335,]    1    2    3    4    5    6
## [336,]    1    2    3    4    5    6
## [337,]    1    2    3    4    5    6
## [338,]    1    2    3    4    5    6
## [339,]    1    2    3    4    5    6
## [340,]    1    2    3    4    5    6
## [341,]    1    2    3    4    5    6
## [342,]    1    2    3    4    5    6
## [343,]    1    2    3    4    5    6
## [344,]    1    2    3    4    5    6
## [345,]    1    2    3    4    5    6
## [346,]    1    2    3    4    5    6
## [347,]    1    2    3    4    5    6
## [348,]    1    2    3    4    5    6
## [349,]    1    2    3    4    5    6
## [350,]    1    2    3    4    5    6
## [351,]    1    2    3    4    5    6
## [352,]    1    2    3    4    5    6
## [353,]    1    2    3    4    5    6
## [354,]    1    2    3    4    5    6
## [355,]    1    2    3    4    5    6
## [356,]    1    2    3    4    5    6
## [357,]    1    2    3    4    5    6
## [358,]    1    2    3    4    5    6
## [359,]    1    2    3    4    5    6
## [360,]    1    2    3    4    5    6
## [361,]    1    2    3    4    5    6
## [362,]    1    2    3    4    5    6
## [363,]    1    2    3    4    5    6
## [364,]    1    2    3    4    5    6
## [365,]    1    2    3    4    5    6
## [366,]    1    2    3    4    5    6
## [367,]    1    2    3    4    5    6
## [368,]    1    2    3    4    5    6
## [369,]    1    2    3    4    5    6
## [370,]    1    2    3    4    5    6
## [371,]    1    2    3    4    5    6
## [372,]    1    2    3    4    5    6
## [373,]    1    2    3    4    5    6
## [374,]    1    2    3    4    5    6
## [375,]    1    2    3    4    5    6
## [376,]    1    2    3    4    5    6
## [377,]    1    2    3    4    5    6
## [378,]    1    2    3    4    5    6
## [379,]    1    2    3    4    5    6
## [380,]    1    2    3    4    5    6
## [381,]    1    2    3    4    5    6
## [382,]    1    2    3    4    5    6
## [383,]    1    2    3    4    5    6
## [384,]    1    2    3    4    5    6
## [385,]    1    2    3    4    5    6
## [386,]    1    2    3    4    5    6
## [387,]    1    2    3    4    5    6
## [388,]    1    2    3    4    5    6
## [389,]    1    2    3    4    5    6
## [390,]    1    2    3    4    5    6
## [391,]    1    2    3    4    5    6
## [392,]    1    2    3    4    5    6
## [393,]    1    2    3    4    5    6
## [394,]    1    2    3    4    5    6
## [395,]    1    2    3    4    5    6
## [396,]    1    2    3    4    5    6
## [397,]    1    2    3    4    5    6
## [398,]    1    2    3    4    5    6
## [399,]    1    2    3    4    5    6
## [400,]    1    2    3    4    5    6
## [401,]    1    2    3    4    5    6
## [402,]    1    2    3    4    5    6
## [403,]    1    2    3    4    5    6
## [404,]    1    2    3    4    5    6
## [405,]    1    2    3    4    5    6
## [406,]    1    2    3    4    5    6
## [407,]    1    2    3    4    5    6
## [408,]    1    2    3    4    5    6
## [409,]    1    2    3    4    5    6
## [410,]    1    2    3    4    5    6
## [411,]    1    2    3    4    5    6
## [412,]    1    2    3    4    5    6
## [413,]    1    2    3    4    5    6
## [414,]    1    2    3    4    5    6
## [415,]    1    2    3    4    5    6
## [416,]    1    2    3    4    5    6
## [417,]    1    2    3    4    5    6
## [418,]    1    2    3    4    5    6
## [419,]    1    2    3    4    5    6
## [420,]    1    2    3    4    5    6
## [421,]    1    2    3    4    5    6
## [422,]    1    2    3    4    5    6
## [423,]    1    2    3    4    5    6
## [424,]    1    2    3    4    5    6
## [425,]    1    2    3    4    5    6
## [426,]    1    2    3    4    5    6
## [427,]    1    2    3    4    5    6
## [428,]    1    2    3    4    5    6
## [429,]    1    2    3    4    5    6
## [430,]    1    2    3    4    5    6
## [431,]    1    2    3    4    5    6
## [432,]    1    2    3    4    5    6
## [433,]    1    2    3    4    5    6
## [434,]    1    2    3    4    5    6
## [435,]    1    2    3    4    5    6
## [436,]    1    2    3    4    5    6
## [437,]    1    2    3    4    5    6
## [438,]    1    2    3    4    5    6
## [439,]    1    2    3    4    5    6
## [440,]    1    2    3    4    5    6
## [441,]    1    2    3    4    5    6
## [442,]    1    2    3    4    5    6
## [443,]    1    2    3    4    5    6
## [444,]    1    2    3    4    5    6
## [445,]    1    2    3    4    5    6
## [446,]    1    2    3    4    5    6
## [447,]    1    2    3    4    5    6
## [448,]    1    2    3    4    5    6
## [449,]    1    2    3    4    5    6
## [450,]    1    2    3    4    5    6
## [451,]    1    2    3    4    5    6
## [452,]    1    2    3    4    5    6
## [453,]    1    2    3    4    5    6
## [454,]    1    2    3    4    5    6
## [455,]    1    2    3    4    5    6
## [456,]    1    2    3    4    5    6
## [457,]    1    2    3    4    5    6
## [458,]    1    2    3    4    5    6
## [459,]    1    2    3    4    5    6
## [460,]    1    2    3    4    5    6
## [461,]    1    2    3    4    5    6
## [462,]    1    2    3    4    5    6
## [463,]    1    2    3    4    5    6
## [464,]    1    2    3    4    5    6
## [465,]    1    2    3    4    5    6
## [466,]    1    2    3    4    5    6
## [467,]    1    2    3    4    5    6
## [468,]    1    2    3    4    5    6
## [469,]    1    2    3    4    5    6
## [470,]    1    2    3    4    5    6
## [471,]    1    2    3    4    5    6
## [472,]    1    2    3    4    5    6
## [473,]    1    2    3    4    5    6
## [474,]    1    2    3    4    5    6
## [475,]    1    2    3    4    5    6
## [476,]    1    2    3    4    5    6
## [477,]    1    2    3    4    5    6
## [478,]    1    2    3    4    5    6
## [479,]    1    2    3    4    5    6
## [480,]    1    2    3    4    5    6
## [481,]    1    2    3    4    5    6
## [482,]    1    2    3    4    5    6
## [483,]    1    2    3    4    5    6
## [484,]    1    2    3    4    5    6
## [485,]    1    2    3    4    5    6
## [486,]    1    2    3    4    5    6
## [487,]    1    2    3    4    5    6
## [488,]    1    2    3    4    5    6
## [489,]    1    2    3    4    5    6
## [490,]    1    2    3    4    5    6
## [491,]    1    2    3    4    5    6
## [492,]    1    2    3    4    5    6
## [493,]    1    2    3    4    5    6
## [494,]    1    2    3    4    5    6
## [495,]    1    2    3    4    5    6
## [496,]    1    2    3    4    5    6
## [497,]    1    2    3    4    5    6
## [498,]    1    2    3    4    5    6
## [499,]    1    2    3    4    5    6
## [500,]    1    2    3    4    5    6
## [501,]    1    2    3    4    5    6
## [502,]    1    2    3    4    5    6
## [503,]    1    2    3    4    5    6
## [504,]    1    2    3    4    5    6
## [505,]    1    2    3    4    5    6
## [506,]    1    2    3    4    5    6
## [507,]    1    2    3    4    5    6
## [508,]    1    2    3    4    5    6
## [509,]    1    2    3    4    5    6
## [510,]    1    2    3    4    5    6
## [511,]    1    2    3    4    5    6
## [512,]    1    2    3    4    5    6
## [513,]    1    2    3    4    5    6
## [514,]    1    2    3    4    5    6
## [515,]    1    2    3    4    5    6
## [516,]    1    2    3    4    5    6
## [517,]    1    2    3    4    5    6
## [518,]    1    2    3    4    5    6
## [519,]    1    2    3    4    5    6
## [520,]    1    2    3    4    5    6
## [521,]    1    2    3    4    5    6
## [522,]    1    2    3    4    5    6
## [523,]    1    2    3    4    5    6
## [524,]    1    2    3    4    5    6
## [525,]    1    2    3    4    5    6
## [526,]    1    2    3    4    5    6
## [527,]    1    2    3    4    5    6
## [528,]    1    2    3    4    5    6
## [529,]    1    2    3    4    5    6
## [530,]    1    2    3    4    5    6
## [531,]    1    2    3    4    5    6
## [532,]    1    2    3    4    5    6
## [533,]    1    2    3    4    5    6
## [534,]    1    2    3    4    5    6
## [535,]    1    2    3    4    5    6
## [536,]    1    2    3    4    5    6
## [537,]    1    2    3    4    5    6
## [538,]    1    2    3    4    5    6
## [539,]    1    2    3    4    5    6
## [540,]    1    2    3    4    5    6
## [541,]    1    2    3    4    5    6
## [542,]    1    2    3    4    5    6
## [543,]    1    2    3    4    5    6
## [544,]    1    2    3    4    5    6
## [545,]    1    2    3    4    5    6
## [546,]    1    2    3    4    5    6
## [547,]    1    2    3    4    5    6
## [548,]    1    2    3    4    5    6
## [549,]    1    2    3    4    5    6
## [550,]    1    2    3    4    5    6
## [551,]    1    2    3    4    5    6
## [552,]    1    2    3    4    5    6
## [553,]    1    2    3    4    5    6
## [554,]    1    2    3    4    5    6
## [555,]    1    2    3    4    5    6
## [556,]    1    2    3    4    5    6
## [557,]    1    2    3    4    5    6
## [558,]    1    2    3    4    5    6
## [559,]    1    2    3    4    5    6
## [560,]    1    2    3    4    5    6
## [561,]    1    2    3    4    5    6
## [562,]    1    2    3    4    5    6
## [563,]    1    2    3    4    5    6
## [564,]    1    2    3    4    5    6
## [565,]    1    2    3    4    5    6
## [566,]    1    2    3    4    5    6
## [567,]    1    2    3    4    5    6
## [568,]    1    2    3    4    5    6
## [569,]    1    2    3    4    5    6
## [570,]    1    2    3    4    5    6
## [571,]    1    2    3    4    5    6
## [572,]    1    2    3    4    5    6
## [573,]    1    2    3    4    5    6
## [574,]    1    2    3    4    5    6
## [575,]    1    2    3    4    5    6
## [576,]    1    2    3    4    5    6
## [577,]    1    2    3    4    5    6
## [578,]    1    2    3    4    5    6
## [579,]    1    2    3    4    5    6
## [580,]    1    2    3    4    5    6
## [581,]    1    2    3    4    5    6
## [582,]    1    2    3    4    5    6
## [583,]    1    2    3    4    5    6
## [584,]    1    2    3    4    5    6
colnames(df)
## [1] "Title"      "Genre"      "Premiere"   "Runtime"    "IMDB.Score"
## [6] "Language"
(class(df))
## [1] "data.frame"
(class(df$Title))
## [1] "character"
class(df$Genre)
## [1] "character"
class(df$Premiere)
## [1] "character"
class(df$Runtime)
## [1] "integer"
class(df$IMDB.Score)
## [1] "numeric"
class(df$Language)
## [1] "character"
max(df$Runtime)
## [1] 209
max(df$IMDB.Score)
## [1] 9
min(df$Runtime)
## [1] 4
min(df$IMDB.Score)
## [1] 2.5
sum(head(df$Runtime))
## [1] 549
sum(head(df$IMDB.Score))
## [1] 17.8
fivenum(df$Runtime)
## [1]   4  86  97 108 209
stack(df)
##                                                                                                          values
## 1                                                                                               Enter the Anime
## 2                                                                                                   Dark Forces
## 3                                                                                                       The App
## 4                                                                                                The Open House
## 5                                                                                                   Kaali Khuhi
## 6                                                                                                         Drive
## 7                                                                                             Leyla Everlasting
## 8                                                                               The Last Days of American Crime
## 9                                                                                                       Paradox
## 10                                                                                           Sardar Ka Grandson
## 11                                                                                         Searching for Sheela
## 12                                                                                                     The Call
## 13                                                                                                      Whipped
## 14                                                                                           All Because of You
## 15                                                                                                        Mercy
## 16                                                                                               After the Raid
## 17                                                                                                Ghost Stories
## 18                                                                                     The Last Thing He Wanted
## 19                                                                                    What Happened to Mr. Cha?
## 20                                                                                                   Death Note
## 21                                                                            Hello Privilege. It's Me, Chelsea
## 22                                                                                             Secret Obsession
## 23                                                                                                   Sextuplets
## 24                                                                                        The Girl on the Train
## 25                                                                                                Thunder Force
## 26                                                                                                 Fatal Affair
## 27                                                                                                 Just Say Yes
## 28                                                                                             Seriously Single
## 29                                                                        The Misadventures of Hedi and Cokeman
## 30                                                                                             5 Star Christmas
## 31                                                                                                  After Maria
## 32                                                                I Am the Pretty Thing That Lives in the House
## 33                                                                                                  Paris Is Us
## 34                                                             Porta dos Fundos: The First Temptation of Christ
## 35                                                                                                  Rattlesnake
## 36                                                                                                  The Players
## 37                                                                                                   We Are One
## 38                                                                                                Finding Agnes
## 39                                                                                                           IO
## 40                                                                                                   Sentinelle
## 41                                                                                                  Sol Levante
## 42                                                                                                  The Binding
## 43                                                                                             We Can Be Heroes
## 44                                                                                          Christmas Crossfire
## 45                                                                                                   Coin Heist
## 46                                                                                           Mrs. Serial Killer
## 47                                                                           Nobody Sleeps in the Woods Tonight
## 48                                                                                                  Take the 10
## 49                                                                                               The Main Event
## 50                                                                                             The Ridiculous 6
## 51                                                                                              Earth and Blood
## 52                                                                                                     Fearless
## 53                                                                                                 Holiday Rush
## 54                                                                                          The Day of the Lord
## 55                                                                                                Airplane Mode
## 56                                                                                                  How It Ends
## 57                                                                                   Love Like the Falling Rain
## 58                                                                                                      Rebirth
## 59                                                                                                 Squared Love
## 60                                                                                                      Cadaver
## 61                                                                                                     Clinical
## 62                                                                                              Coffee & Kareem
## 63                                                                                                         Dude
## 64                                                                                                   Geez & Ann
## 65                                                                                       The Larva Island Movie
## 66                                                                                                 #REALITYHIGH
## 67                                                            American Factory: A Conversation with the Obamas 
## 68                                                                                                   Desperados
## 69                                                                       Dolly Parton's Christmas on the Square
## 70                                                                                           Father of the Year
## 71                                                                                                    Firebrand
## 72                                                                                                    Ghost Lab
## 73                                                                                             Girlfriend's Day
## 74                                                                            Handsome: A Netflix Mystery Movie
## 75                                                                                              Hubie Halloween
## 76                                                                                                        Ibiza
## 77                                                                                             Rim of the World
## 78                                                                                                 Sandy Wexler
## 79                                                                                            See You Yesterday
## 80                                                                          Still Laugh-In: The Stars Celebrate
## 81                                                                                          Strip Down, Rise Up
## 82                                                                                                    Tall Girl
## 83                                                                                                    The Beast
## 84                                                                                                  The Week Of
## 85                                                                        A Christmas Prince: The Royal Wedding
## 86                                                                                               Back to School
## 87                                                                                               Dangerous Lies
## 88                                                                               Gunjan Saxena: The Kargil Girl
## 89                                                                                                    Intuition
## 90                                                                     The Most Assassinated Woman in the World
## 91                                                                                          Things Heard & Seen
## 92                                                                                             To Each, Her Own
## 93                                                                     Who Would You Take to a Deserted Island?
## 94                                                                                                         XOXO
## 95                                                                      A Babysitter's Guide to Monster Hunting
## 96                                                                           A Christmas Prince: The Royal Baby
## 97                                                                                           Despite Everything
## 98                                                                        Dolly Kitty and Those Twinkling Stars
## 99                                                                                     Freaks: You're One of Us
## 100                                                                                             Game Over, Man!
## 101                                                                                                      Guilty
## 102                                                                                           In the Tall Grass
## 103                                                                                               Madame Claude
## 104                                                                                                       Naked
## 105                                                                                            Outside the Wire
## 106                                                                         The Princess Switch: Switched Again
## 107                                                                                      Under the Riccione Sun
## 108                                                                                     A Very Murray Christmas
## 109                                                                                                Been So Long
## 110                                                                                                   Dead Kids
## 111                                                                                               Get the Grift
## 112                                                                                        Ghosts of Sugar Land
## 113                                                                                                House Arrest
## 114                                                                         Kevin Hart's Guide to Black History
## 115                                                                                         Love Wedding Repeat
## 116                                                                                                        Mute
## 117                                                                                                     Òlòt?ré
## 118                                                                                                     Red Dot
## 119                                                                                                 Ride or Die
## 120                                                                                                Step Sisters
## 121                                                                                     The Cloverfield Paradox
## 122                                                                                 The Knight Before Christmas
## 123                                                                       The Legacy of a Whitetail Deer Hunter
## 124                                                                                                 The Package
## 125                                                                                               Unicorn Store
## 126                                                                                                Wine Country
## 127                                                                                                 Bomb Scared
## 128                                                                                               Brahman Naman
## 129                                                                                                  Double Dad
## 130                                                                                            Falling Inn Love
## 131                                                                                               Hold the Dark
## 132                                                                                            Love, Guaranteed
## 133                                                                                         One-Way to Tomorrow
## 134                                                                             Sarah Cooper: Everything's Fine
## 135                                                                                              The Last Laugh
## 136                                                                                           The Last Paradiso
## 137                                                                                            The Midnight Sky
## 138                                                                                               The Paramedic
## 139                                                                                               The Sleepover
## 140                                                                                      Vampires vs. the Bronx
## 141                                                                                        Why Did You Kill Me?
## 142                                                                                                 A Week Away
## 143                                                                                            Caught by a Wave
## 144                                                                                       Christmas Inheritance
## 145                                                                                                  Dad Wanted
## 146                                                                                         El Camino Christmas
## 147                                                                                                         Eli
## 148                                                                                            Ginny Weds Sunny
## 149                                                                                                    Good Sam
## 150                                                                                                   Lionheart
## 151                                                                                                 Little Evil
## 152                                                                                                    One Take
## 153                                                                                            Out of Many, One
## 154                                                                                                 Point Blank
## 155                                                                                                  Prime Time
## 156                                                                                                 The Do-Over
## 157                                                                                        The Holiday Calendar
## 158                                                                                     The Woman in the Window
## 159                                                                                             The Wrong Missy
## 160                                                                                              Velvet Buzzsaw
## 161                                                                                                     Yes Day
## 162                                                                                                   15 August
## 163                                                                                      A California Christmas
## 164                                                                                          A Christmas Prince
## 165                                                                                         All Day and a Night
## 166                                                                                                American Son
## 167                                                                                                       Barry
## 168                                                                                                   Candy Jar
## 169                                                                                     Choked: Paisa Bolta Hai
## 170                                                                                                Class of '83
## 171                                                                                                  Extinction
## 172                                                                                           Happy Anniversary
## 173                                                                                              I Am All Girls
## 174                                                                                                 Let It Snow
## 175                                                                                                     Mascots
## 176                                                                                    Operation Christmas Drop
## 177                                                                                                Rajma Chawal
## 178                                                                                                Rich in Love
## 179                                                                                                 Rising High
## 180                                                                                                 Rodney King
## 181                                                                                   Sierra Burgess Is a Loser
## 182                                                                                                Small Crimes
## 183                                                                                      Special Correspondents
## 184                                                                                                         TAU
## 185                                                                                             The After Party
## 186                                                                                The Babysitter: Killer Queen
## 187                                                                                            The Claus Family
## 188                                                                                         The Kissing Booth 2
## 189                                                                                            The Perfect Date
## 190                                                                                              What We Wanted
## 191                                                                                             You've Got This
## 192                                                                                                  6 Balloons
## 193                                                                                           A Fall from Grace
## 194                                                                                                     Amateur
## 195                                                                                            Army of the Dead
## 196                                                                                                         Cam
## 197                                                                                             Earthquake Bird
## 198                                                              Frankenstein's Monster's Monster, Frankenstein
## 199                                                                                                  Horse Girl
## 200                                                          Notes from Dunblane: Lesson from a School Shooting
## 201                                                                                                       Maska
## 202                                                                                                 The Decline
## 203                                                                                The Minimalists: Less Is Now
## 204                                                                                              The Polka King
## 205                                                                                                    The Prom
## 206                                                                   True Memoirs of an International Assassin
## 207                                                                                                      Ultras
## 208                                                                                                 Come Sunday
## 209                                                                                        Forgive Us Our Debts
## 210                                                                                                        iBoy
## 211                                                                                                  Lovefucked
## 212                                                                                                     Juanita
## 213                                                                                              Murder Mystery
## 214                                                                                               Project Power
## 215                                                                                                     Rebecca
## 216                                                                          The Christmas Chronicles: Part Two
## 217                                                                                           The Kissing Booth
## 218                                                                                         The Princess Switch
## 219                                                                      To All the Boys: P.S. I Still Love You
## 220                                                                                                 War Machine
## 221                                                                                               6 Underground
## 222                                                                                Between Two Ferns: The Movie
## 223                                                                                               Burning Sands
## 224                                                                                            Casting JonBenet
## 225                                                                                  Deidra & Laney Rob a Train
## 226                                                                                              Finding 'Ohana
## 227                                                                                                    Holidate
## 228                                                                                         Holiday in the Wild
## 229                                                                                            Hot Girls Wanted
## 230                                                                                                 Like Father
## 231                                                                                                  Lost Girls
## 232                                                                                                   Otherhood
## 233                                                                                       Pee-wee's Big Holiday
## 234                                                                                                  Rogue City
## 235                                                                                                      Sergio
## 236                                                                                                 Stuck Apart
## 237                                                                                        Tersanjung the Movie
## 238                                                                                                  The Killer
## 239                                                                                               The Lovebirds
## 240                                                                             The Most Hated Woman in America
## 241                                                                                              The Perfection
## 242                                                                               Tribhanga – Tedhi Medhi Crazy
## 243                                                                                             Unknown Origins
## 244                                                                                                     Work It
## 245                                                                                                  Alien Xmas
## 246                                                                                 Baggio: The Divine Ponytail
## 247                                                                                                  Below Zero
## 248                                                                                                    Citation
## 249                                                                                      Crazy Awesome Teachers
## 250                                                                               Have You Ever Seen Fireflies?
## 251                                                                                            High Flying Bird
## 252                                                                                   In the Shadow of the Moon
## 253                                                                                                 Lost Bullet
## 254                                                                          Octonauts & the Caves of Sac Actun
## 255                                                                                       Offering to the Storm
## 256                                                                                             Roxanne Roxanne
## 257                                                                                               Someone Great
## 258                                                                                        Spenser Confidential
## 259                                                                                   The Land of Steady Habits
## 260                                                                                           The Rachel Divide
## 261                                                                                                     Voyuer 
## 262                                                                                                  Win It All
## 263                                                                                                        1922
## 264                                                                                      A Tale of Two Kitchens
## 265                                                                                            Alex Strangelove
## 266                                                                                                     Apostle
## 267                                                                                                       Benji
## 268                                                                                                      Bright
## 269                                                                                                       Cargo
## 270                                                                                             Concrete Cowboy
## 271                                                                                               Feel the Beat
## 272                                                                                                Get the Goat
## 273                                                                                        I Am Not an Easy Man
## 274                                                                                                 June & Kopi
## 275                                                                                               Music Teacher
## 276                                                                                        Nail Bomber: Manhunt
## 277                                                                                            Notes for My Son
## 278                                                                                                       Polar
## 279                                                                         Porta dos Fundos: The Last Hangover
## 280                                                                                                 Sand Castle
## 281                                                                                                Shimmer Lake
## 282                                                                                                    Spectral
## 283                                                                                              The Babysitter
## 284                                                                                               The Discovery
## 285                                                                                          The Forest of Love
## 286                                                                                              The Laundromat
## 287                                                                                The Legend of Cocaine Island
## 288                                                                                                The Outsider
## 289                                                                                                Time to Hunt
## 290                                                                         To All the Boys: Always and Forever
## 291                                                                            Travis Scott: Look Mom I Can Fly
## 292                                                                                                    Uncorked
## 293                                                                                       Anelka: Misunderstood
## 294                                                                        Ariana Grande: Excuse Me, I Love You
## 295                                                                                                         ARQ
## 296                                                                                                     Birders
## 297                                                                                        Como Caído del Cielo
## 298                                                                                                 First Match
## 299                                                                                                   Fractured
## 300                                                                                           Irreplaceable You
## 301                                                                                                  Isi & Ossi
## 302                                                                           John Was Trying to Contact Aliens
## 303                                                                                                Layla Majnun
## 304                                                                    Murder to Mercy: The Cyntoia Brown Story
## 305                                                                                                  My Own Man
## 306                                                                                          Nappily Ever After
## 307                                                                                               Over the Moon
## 308                                                                                                 Street Flow
## 309                                                                                               Strong Island
## 310                                                                     Sturgill Simpson Presents: Sound & Fury
## 311                                                                                             Take Your Pills
## 312                                                                                         The Heartbreak Club
## 313                                                                                         The Mars Generation
## 314                                                                                                The Occupant
## 315                                                                                             The Willoughbys
## 316                                                                                             Triple Frontier
## 317                                                                                              Two Catalonias
## 318                                                                                          Walk. Ride. Rodeo.
## 319                                                                                                    Wheelman
## 320                                                                                           When We First Met
## 321                                                                                              A 3 Minute Hug
## 322                                                                                       All the Bright Places
## 323                                                                                            All Together Now
## 324                                                                                   Altered Carbon: Resleeved
## 325                                                                   Antoine Griezmann: The Making of a Legend
## 326                                                                                                     Canvas 
## 327                                                                     Chadwick Boseman: Portrait of an Artist
## 328                                                                                                  Chopsticks
## 329                                                                                                 Da 5 Bloods
## 330                                                                           Dolly Parton: A MusiCares Tribute
## 331                                                             Eurovision Song Contest: The Story of Fire Saga
## 332                                                                                               Gerald's Game
## 333                                                                                                   His House
## 334                                                                          Jingle Jangle: A Christmas Journey
## 335                                                                                           Life Overtakes Me
## 336                                                                                                Lust Stories
## 337                                                                                                     Monster
## 338                                                                                Mowgli: Legend of the Jungle
## 339                                                                                       Nobody Knows I'm Here
## 340                                                                      Nobody Speak: Trials of the Free Press
## 341                                                                                                      Oxygen
## 342                                                                                                   Set It Up
## 343                                                                                The Incredible Jessica James
## 344                                                                                                   Tigertail
## 345                                                                                                      Tramps
## 346                                                                                           What Did Jack Do?
## 347                                                                                                    Bad Trip
## 348                                                                                                    Bird Box
## 349                                                                                                     Bulbbul
## 350                                                                                             Crazy About Her
## 351                                                                                             Elisa & Marcela
## 352                                                                                    I'll Sleep When I'm Dead
## 353                                                                               I'm Thinking of Ending Things
## 354                                                                                          It Takes a Lunatic
## 355                                                                                                   Milestone
## 356                                                                                               Recovery Boys
## 357                                                                      ReMastered: Who Killed Jam Master Jay?
## 358                                                                                     Shawn Mendes: In Wonder
## 359                                                                                              Space Sweepers
## 360                                                                                           The American Meme
## 361                                                                                                   The Angel
## 362                                                                                        The Crimes That Bind
## 363                                                                                   The Red Sea Diving Resort
## 364                                                                                 What Would Sophia Loren Do?
## 365                                                                                              A Whisker Away
## 366                                                                                             Ajeeb Daastaans
## 367                                                                                      Arlo the Alligator Boy
## 368                                                                                Bikram: Yogi, Guru, Predator
## 369                                                                                                      Blame!
## 370                                                                                                Blue Miracle
## 371                                                                                               CounterPunch 
## 372                                                                     Crack: Cocaine, Corruption & Conspiracy
## 373                                                                                                  Extraction
## 374                                                                                                Giving Voice
## 375                                                                                             Hillbilly Elegy
## 376                                                                          Hope Frozen: A Quest to Live Twice
## 377                                                                                             Imperial Dreams
## 378                                                                                      Just Another Christmas
## 379                                                                                            Little Miss Sumo
## 380                                                                                             Malcolm & Marie
## 381                                                         Michael Bolton's Big, Sexy, Valentine's Day Special
## 382                                                                                                       Moxie
## 383                                                                                           Night in Paradise
## 384                                                                                                 Paper Lives
## 385                                                                                    Parchis: The Documentary
## 386                                                                                                    Tallulah
## 387                                                                                               The Old Guard
## 388                                                                            Tony Robbins: I Am Not Your Guru
## 389                                                                                                    Upstarts
## 390                                                                                                     22 July
## 391                                                                                                      7 años
## 392                                                                                 A Futile and Stupid Gesture
## 393                                                               A Life of Speed: The Juan Manuel Fangio Story
## 394                                                                                     A Love Song for Latasha
## 395                                                                                            All in My Family
## 396                                                                                          Always Be My Maybe
## 397                                                                                                    Becoming
## 398                                                                                        Long Live Brij Mohan
## 399                                                                                                     Calibre
## 400                                                                                               Death to 2020
## 401                                                                                         GIMS: On the Record
## 402                                                                Have a Good Trip: Adventures in Psychedelics
## 403                                                                                                  Heroin(e) 
## 404                                                                                                  Mercury 13
## 405                                                                                           Saving Capitalism
## 406                                                                                                 Serious Men
## 407                                                                                        The Boys in the Band
## 408                                                                    The Boys in the Band: Something Personal
## 409                                                                                              The Life Ahead
## 410                                                                                  The Other Side of the Wind
## 411                                                                                                  The Trader
## 412                                                                                                 To the Bone
## 413                                                                                 Tony Parker: The Final Shot
## 414                                                                                                    AK vs AK
## 415                                                                                                 Amanda Knox
## 416                                                                                Bigflo & Oil: Hip Hop Frenzy
## 417                                                                               Biggie: I Got a Story to Tell
## 418                                                                                            Cops and Robbers
## 419                                                                  I Don't Feel at Home in This World Anymore
## 420                                                                                                   Laerte-se
## 421                                                                                                        Mank
## 422                                                                                          Our Souls at Night
## 423                                                                                                 Outlaw King
## 424                                                                                                    Pagglait
## 425                                                                           ReMastered: Who Shot the Sheriff?
## 426                                                                                               Seeing Allred
## 427                                                                                          Spelling the Dream
## 428                                                                                      The Claudia Kishi Club
## 429                                                                                              The Half of It
## 430                                                                                              The Highwaymen
## 431                                       The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 432                                                                   The Meyerowitz Stories (New and Selected)
## 433                                                                         Feminists: What Were They Thinking?
## 434                                                                                         Gaga: Five Foot Two
## 435                                 I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 436                                                                                               Kingdom of Us
## 437                                                                                  Lorena, Light-Footed Woman
## 438                                                                       Los Tigres del Norte at Folsom Prison
## 439                                                                                    Ma Rainey's Black Bottom
## 440                                                        Ma Rainey's Black Bottom: A Legacy Brought to Screen
## 441                                                     Operation Varsity Blues: The College Admissions Scandal
## 442                                                                                                        Pele
## 443                                                                         ReMastered: Devil at the Crossroads
## 444                                                                                ReMastered: The Lion's Share
## 445                                                                     ReMastered: The Miami Showband Massacre
## 446                                                                                                   Resurface
## 447                                                                           Rocko's Modern Life: Static Cling
## 448                                                                                                 Rose Island
## 449                                                                                    The Christmas Chronicles
## 450                                                                                                    The Dirt
## 451                                                                                      The Night Comes for Us
## 452                                                      13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 453                                                                                          Angela's Christmas
## 454                                                                                     Angela's Christmas Wish
## 455                                                                                                       Beats
## 456                                                                                             Circus of Books
## 457                                                                      Dance Dreams: Hot Chocolate Nutcracker
## 458                                                                                     Derren Brown: Sacrifice
## 459                                                                                     El Pepe: A Supreme Life
## 460                                                                                                    End Game
## 461                                                                                                      Evelyn
## 462                                                                                                       Ferry
## 463                                                                                            Grass Is Greener
## 464                                                                         Guillermo Vilas: Settling the Score
## 465                                                                             Joshua: Teenager vs. Superpower
## 466                                                                         Keith Richards: Under the Influence
## 467                                                                                        Knock Down the House
## 468                                                                       Loudon Wainwright III: Surviving Twin
## 469                                                                                   My Beautiful Broken Brain
## 470                                                                                                   One of Us
## 471                                                                                           Pieces of a Woman
## 472                                                                                        Ram Dass, Going Home
## 473                                                                  ReMastered: Tricky Dick & the Man in Black
## 474                                                                                           Rooting for Roona
## 475                                                                                      The Devil All the Time
## 476                                                                                                     The Dig
## 477                                                                                              The Great Hack
## 478                                                                                             The White Tiger
## 479                                                                           To All the Boys I've Loved Before
## 480                                                                       American Murder: The Family Next Door
## 481                                                                                              Audrie & Daisy
## 482                                                                                 First They Killed My Father
## 483                                                                Fyre: The Greatest Party That Never Happened
## 484                                                                                            Into the Inferno
## 485                                                                                                LA Originals
## 486                                                                                                Ladies First
## 487                                                                                        Love per Square Foot
## 488                                                                                                   Paddleton
## 489                                                                                                Private Life
## 490                                                                                                   Seventeen
## 491                                                                                                   Sometimes
## 492                                                                                                        Soni
## 493                                                                                     The 40-Year-Old Version
## 494                                                                                                The Disciple
## 495                                                                                       The Edge of Democracy
## 496                                                                                                    The King
## 497                                                                 The Road to El Camino: A Breaking Bad Movie
## 498                                                                                     The Siege of Jadotville
## 499                                                                                                       Zion 
## 500                                                                                         Dolemite Is My Name
## 501                                                                             El Camino: A Breaking Bad Movie
## 502                                                                                                    Extremis
## 503                                                                                          Father Soldier Son
## 504                                                                                          Get Me Roger Stone
## 505                                                                                          I'm No Longer Here
## 506                                                             Mucho Mucho Amor: The Legend of Walter Mercado 
## 507                                                                          Octonauts & the Great Barrier Reef
## 508                                                                                                        Okja
## 509                                                                                                  On My Skin
## 510                                                                                              Raat Akeli Hai
## 511                                                                         ReMastered: Massacre at the Stadium
## 512                                                                   ReMastered: The Two Killings of Sam Cooke
## 513                                                                                 Secrets of the Saqqara Tomb
## 514                                                                                     Sitara: Let Girls Dream
## 515                                                                        Sky Ladder: The Art of Cai Guo-Qiang
## 516                                                                                             Team Foxcatcher
## 517                                                                                The Ballad of Buster Scruggs
## 518                                                                     The Death and Life of Marsha P. Johnson
## 519                                                                                  The Fundamentals of Caring
## 520                                                            The Other One: The Long Strange Trip of Bob Weir
## 521                                                                                            American Factory
## 522                                                                                            Fire in Paradise
## 523                                                                                                   Long Shot
## 524                                                                                              Miss Americana
## 525                                                                                    Period. End of Sentence.
## 526                                                                               Shawn Mendes: Live in Concert
## 527                                                                                                    Shirkers
## 528                                                                                         The Black Godfather
## 529                                                                               The Irishman: In Conversation
## 530                                                                                            The Speed Cubers
## 531                                                                               They'll Love Me When I'm Dead
## 532                                                                                                         Tig
## 533                                                                 Barbra: The Music, The Mem'ries, The Magic!
## 534                                                                                 Blackpink: Light Up the Sky
## 535                                                                                                 City of Joy
## 536                                                                                        Dick Johnson Is Dead
## 537                                                                              Homecoming: A Film by Beyonce 
## 538                                                                              Invader Zim: Enter the Florpus
## 539                                                                       Joan Didion: The Center Will Not Hold
## 540                                                                         John Mulaney & the Sack Lunch Bunch
## 541                                                                                               Reversing Roe
## 542                                                                                           The White Helmets
## 543                                                                                                   Athlete A
## 544                                                                                                        Ludo
## 545                                                                                                      Quincy
## 546                                                 Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 547                                                                                            Tell Me Who I Am
## 548                                                                                           The Bleeding Edge
## 549                                                                                          The Social Dilemma
## 550                                                                                               The Two Popes
## 551                                                                                 What Happened, Miss Simone?
## 552                                                                                                  Yeh Ballet
## 553                                                                                                       Anima
## 554                                                                                         Beasts of No Nation
## 555                                                                            Brene Brown: The Call to Courage
## 556                                                                          Crip Camp: A Disability Revolution
## 557  Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 558                                                                      Justin Timberlake + The Tennessee Kids
## 559                                                                                                Road to Roma
## 560                                                                                                        Roma
## 561                                                                              If Anything Happens I Love You
## 562                                                                                                The Irishman
## 563                                                                                  The Trial of the Chicago 7
## 564                                                                                               A Secret Love
## 565                                                                                                      Icarus
## 566                                                                                              Marriage Story
## 567                                                                                              The Ivory Game
## 568                                                                Struggle: The Life and Lost Art of Szukaiski
## 569                                                                                              Chasing Coral 
## 570                                                                                          My Octopus Teacher
## 571                                                                                              Rising Phoenix
## 572                                                                                                        13th
## 573                                                                           Disclosure: Trans Lives on Screen
## 574                                                                                                       Klaus
## 575                                                                                                  Seaspiracy
## 576                                                                       The Three Deaths of Marisela Escobedo
## 577                                                                                     Cuba and the Cameraman 
## 578                                                                                      Dancing with the Birds
## 579                                                                  Ben Platt: Live from Radio City Music Hall
## 580                                                                       Taylor Swift: Reputation Stadium Tour
## 581                                                                 Winter on Fire: Ukraine's Fight for Freedom
## 582                                                                                     Springsteen on Broadway
## 583                                                                   Emicida: AmarElo - It's All For Yesterday
## 584                                                                    David Attenborough: A Life on Our Planet
## 585                                                                                                 Documentary
## 586                                                                                                    Thriller
## 587                                                                                       Science fiction/Drama
## 588                                                                                             Horror thriller
## 589                                                                                                     Mystery
## 590                                                                                                      Action
## 591                                                                                                      Comedy
## 592                                                                                         Heist film/Thriller
## 593                                                                                     Musical/Western/Fantasy
## 594                                                                                                      Comedy
## 595                                                                                                 Documentary
## 596                                                                                                       Drama
## 597                                                                                             Romantic comedy
## 598                                                                                               Action comedy
## 599                                                                                                    Thriller
## 600                                                                                                 Documentary
## 601                                                                                            Horror anthology
## 602                                                                                          Political thriller
## 603                                                                                                      Comedy
## 604                                                                                             Horror thriller
## 605                                                                                                 Documentary
## 606                                                                                                    Thriller
## 607                                                                                                      Comedy
## 608                                                                                                    Thriller
## 609                                                                                            Superhero-Comedy
## 610                                                                                                    Thriller
## 611                                                                                             Romantic comedy
## 612                                                                                                      Comedy
## 613                                                                                                      Comedy
## 614                                                                                                      Comedy
## 615                                                                                                 Documentary
## 616                                                                                                      Horror
## 617                                                                                               Romance drama
## 618                                                                                                      Comedy
## 619                                                                                                      Horror
## 620                                                                                                      Comedy
## 621                                                                                                 Documentary
## 622                                                                                                       Drama
## 623                                                                                       Science fiction/Drama
## 624                                                                                                      Action
## 625                                                                                               Anime / Short
## 626                                                                                                       Drama
## 627                                                                                                   Superhero
## 628                                                                                                    Thriller
## 629                                                                                                       Heist
## 630                                                                                                    Thriller
## 631                                                                                                      Horror
## 632                                                                                                      Comedy
## 633                                                                                                      Comedy
## 634                                                                                                     Western
## 635                                                                                                      Action
## 636                                                                                         Animation/Superhero
## 637                                                                                                 Family film
## 638                                                                                                       Drama
## 639                                                                                                      Comedy
## 640                                                                                             Action-thriller
## 641                                                                                                       Drama
## 642                                                                                                    Thriller
## 643                                                                                             Romantic comedy
## 644                                                                                                      Horror
## 645                                                                                                    Thriller
## 646                                                                                               Action comedy
## 647                                                                                           Teen comedy-drama
## 648                                                                                              Romantic drama
## 649                                                                                                   Animation
## 650                                                                                                      Comedy
## 651                                                                                       Aftershow / Interview
## 652                                                                                             Romantic comedy
## 653                                                                                           Christmas musical
## 654                                                                                                      Comedy
## 655                                                                                                       Drama
## 656                                                                                                      Horror
## 657                                                                                                      Comedy
## 658                                                                                                      Comedy
## 659                                                                                                      Comedy
## 660                                                                                                      Comedy
## 661                                                                                   Science fiction adventure
## 662                                                                                                      Comedy
## 663                                                                                             Science fiction
## 664                                                                                                Variety show
## 665                                                                                                 Documentary
## 666                                                                                                Comedy-drama
## 667                                                                                                       Drama
## 668                                                                                                      Comedy
## 669                                                                                             Romantic comedy
## 670                                                                                                      Comedy
## 671                                                                                                    Thriller
## 672                                                                                                       Drama
## 673                                                                                                    Thriller
## 674                                                                                                    Thriller
## 675                                                                                                      Horror
## 676                                                                                             Romantic comedy
## 677                                                                                                       Drama
## 678                                                                                                       Drama
## 679                                                                                       Comedy/Fantasy/Family
## 680                                                                                             Romantic comedy
## 681                                                                                                      Comedy
## 682                                                                                                       Drama
## 683                                                                                          Supernatural drama
## 684                                                                                               Action/Comedy
## 685                                                                                                    Thriller
## 686                                                                                                      Horror
## 687                                                                                                       Drama
## 688                                                                                                      Comedy
## 689                                                                                      Action/Science fiction
## 690                                                                                             Romantic comedy
## 691                                                                                      Romantic teenage drama
## 692                                                                                            Comedy / Musical
## 693                                                                                                     Musical
## 694                                                                                                    Thriller
## 695                                                                                                      Comedy
## 696                                                                                                 Documentary
## 697                                                                                                      Comedy
## 698                                                                                                Variety show
## 699                                                                                             Romantic comedy
## 700                                                                                     Science fiction/Mystery
## 701                                                                                                 Crime drama
## 702                                                                                                    Thriller
## 703                                                                                Psychological thriller drama
## 704                                                                                                      Comedy
## 705                                                                                             Science fiction
## 706                                                                                             Romantic comedy
## 707                                                                                            Adventure/Comedy
## 708                                                                                                Black comedy
## 709                                                                                                      Comedy
## 710                                                                                                      Comedy
## 711                                                                                                Black comedy
## 712                                                                                                      Comedy
## 713                                                                                                Comedy-drama
## 714                                                                                             Romantic comedy
## 715                                                                                                    Thriller
## 716                                                                                             Romantic comedy
## 717                                                                                                     Romance
## 718                                                                                                Variety show
## 719                                                                                                Comedy-drama
## 720                                                                                              Romantic drama
## 721                                                                                             Science fiction
## 722                                                                                                    Thriller
## 723                                                                                                      Comedy
## 724                                                                                               Horror comedy
## 725                                                                                                 Documentary
## 726                                                                                           Christian musical
## 727                                                                                         Romantic teen drama
## 728                                                                                              Romantic drama
## 729                                                                                                      Family
## 730                                                                                                 Dark comedy
## 731                                                                                                      Horror
## 732                                                                                             Romantic comedy
## 733                                                                                                       Drama
## 734                                                                                                      Comedy
## 735                                                                                               Comedy horror
## 736                                                                                                 Documentary
## 737                                                                                                 Documentary
## 738                                                                                                      Action
## 739                                                                                                    Thriller
## 740                                                                                               Action comedy
## 741                                                                                             Romantic comedy
## 742                                                                                      Psychological thriller
## 743                                                                                                      Comedy
## 744                                                                                                    Thriller
## 745                                                                                                      Comedy
## 746                                                                                                Comedy-drama
## 747                                                                                             Romantic comedy
## 748                                                                                             Romantic comedy
## 749                                                                                                       Drama
## 750                                                                                                       Drama
## 751                                                                                                      Biopic
## 752                                                                                                      Comedy
## 753                                                                                                       Drama
## 754                                                                                                       Drama
## 755                                                                                    Science fiction/Thriller
## 756                                                                                             Romantic comedy
## 757                                                                                                    Thriller
## 758                                                                                             Romantic comedy
## 759                                                                                                Mockumentary
## 760                                                                                             Romantic comedy
## 761                                                                                                Comedy-drama
## 762                                                                                             Romantic comedy
## 763                                                                                                      Satire
## 764                                                                                                One-man show
## 765                                                                                       Romantic comedy-drama
## 766                                                                                                 Dark comedy
## 767                                                                                                      Satire
## 768                                                                                    Science fiction/Thriller
## 769                                                                                                      Comedy
## 770                                                                                               Comedy/Horror
## 771                                                                                                     Fantasy
## 772                                                                                             Romantic comedy
## 773                                                                                             Romantic comedy
## 774                                                                                                       Drama
## 775                                                                                             Romantic comedy
## 776                                                                                                       Drama
## 777                                                                                                    Thriller
## 778                                                                                                Sports-drama
## 779                                                                                                Zombie/Heist
## 780                                                                                        Psychological horror
## 781                                                                                                     Mystery
## 782                                                                                                Mockumentary
## 783                                                                                                       Drama
## 784                                                                                                 Documentary
## 785                                                                                             Romantic comedy
## 786                                                                                                    Thriller
## 787                                                                                                 Documentary
## 788                                                                                                Comedy-drama
## 789                                                                                                     Musical
## 790                                                                                               Action comedy
## 791                                                                                                 Sports film
## 792                                                                                                      Biopic
## 793                                                                                                       Drama
## 794                                                                                    Science fiction/Thriller
## 795                                                                                                       Drama
## 796                                                                                                       Drama
## 797                                                                                              Comedy mystery
## 798                                                                                                   Superhero
## 799                                                                                           Romantic thriller
## 800                                                                                            Christmas comedy
## 801                                                                                             Romantic comedy
## 802                                                                                             Romantic comedy
## 803                                                                                             Romantic comedy
## 804                                                                                                  War-Comedy
## 805                                                                                                      Action
## 806                                                                                                      Comedy
## 807                                                                                                       Drama
## 808                                                                                                 Documentary
## 809                                                                                                       Drama
## 810                                                                                                      Family
## 811                                                                                     Romantic comedy/Holiday
## 812                                                                                           Adventure-romance
## 813                                                                                                 Documentary
## 814                                                                                                      Comedy
## 815                                                                                                 Crime drama
## 816                                                                                                      Comedy
## 817                                                                                                   Adventure
## 818                                                                                                 Crime drama
## 819                                                                                                      Biopic
## 820                                                                                                       Drama
## 821                                                                                                       Drama
## 822                                                                                                     Western
## 823                                                                                             Romantic comedy
## 824                                                                                                      Biopic
## 825                                                                                             Horror-thriller
## 826                                                                                                       Drama
## 827                                                                                                    Thriller
## 828                                                                                                Dance comedy
## 829                                                                                                 Stop Motion
## 830                                                                                                      Biopic
## 831                                                                                                       Drama
## 832                                                                                                       Drama
## 833                                                                                                Comedy-drama
## 834                                                                                                      Comedy
## 835                                                                                                Sports-drama
## 836                                                                                                    Thriller
## 837                                                                                                    Thriller
## 838                                                                                                   Animation
## 839                                                                                                    Thriller
## 840                                                                                                      Biopic
## 841                                                                                             Romantic comedy
## 842                                                                                               Action comedy
## 843                                                                                                       Drama
## 844                                                                                                 Documentary
## 845                                                                                                 Documentary
## 846                                                                                                      Comedy
## 847                                                                                          Horror/Crime drama
## 848                                                                                                 Documentary
## 849                                                                                             Romantic comedy
## 850                                                                                             Horror-thriller
## 851                                                                                                 Family film
## 852                                                                                               Urban fantasy
## 853                                                                                                Drama/Horror
## 854                                                                                                       Drama
## 855                                                                                         Family/Comedy-drama
## 856                                                                                                      Comedy
## 857                                                                                             Romantic comedy
## 858                                                                                                       Drama
## 859                                                                                                       Drama
## 860                                                                                                 Documentary
## 861                                                                                                       Drama
## 862                                                                                                      Action
## 863                                                                                                      Comedy
## 864                                                                                                         War
## 865                                                                                              Crime thriller
## 866                                                                                      Science fiction/Action
## 867                                                                                          Teen comedy horror
## 868                                                                                       Science fiction/Drama
## 869                                                                                                       Drama
## 870                                                                                                Comedy-drama
## 871                                                                                                 Documentary
## 872                                                                                                 Crime drama
## 873                                                                                                    Thriller
## 874                                                                                             Romantic comedy
## 875                                                                                                 Documentary
## 876                                                                                                       Drama
## 877                                                                                                 Documentary
## 878                                                                                                Concert Film
## 879                                                                                    Science fiction/Thriller
## 880                                                                                                 Documentary
## 881                                                                                              Musical comedy
## 882                                                                                                Sports-drama
## 883                                                                                                    Thriller
## 884                                                                                                       Drama
## 885                                                                                             Romantic comedy
## 886                                                                                                 Documentary
## 887                                                                                              Romantic drama
## 888                                                                                                 Documentary
## 889                                                                                                 Documentary
## 890                                                                                                Comedy-drama
## 891                                                                                 Animation/Musical/Adventure
## 892                                                                                                       Drama
## 893                                                                                                 Documentary
## 894                                                                                        Animation / Musicial
## 895                                                                                                 Documentary
## 896                                                                                                Comedy-drama
## 897                                                                                                 Documentary
## 898                                                                                                    Thriller
## 899                                                                                  Animation/Comedy/Adventure
## 900                                                                                             Action-thriller
## 901                                                                                                 Documentary
## 902                                                                                                       Drama
## 903                                                                                             Action thriller
## 904                                                                                             Romantic comedy
## 905                                                                                                 Documentary
## 906                                                                                                     Romance
## 907                                                                                                       Drama
## 908                                                                                       Anime/Science fiction
## 909                                                                                                 Documentary
## 910                                                                                           Animation / Short
## 911                                                                                                 Documentary
## 912                                                                                                      Comedy
## 913                                                                                                   War drama
## 914                                                                                                 Documentary
## 915                                                                                              Musical comedy
## 916                                                                                             Horror thriller
## 917                                                                                                    Thriller
## 918                                                                                    Family/Christmas musical
## 919                                                                                                 Documentary
## 920                                                                                                       Drama
## 921                                                                                                       Drama
## 922                                                                                                   Adventure
## 923                                                                                                       Drama
## 924                                                                                                 Documentary
## 925                                                                                    Science fiction thriller
## 926                                                                                             Romantic comedy
## 927                                                                                                      Comedy
## 928                                                                                                       Drama
## 929                                                                                                     Romance
## 930                                                                                               Drama / Short
## 931                                                                                  Hidden-camera prank comedy
## 932                                                                                      Psychological thriller
## 933                                                                                                      Horror
## 934                                                                                             Romantic comedy
## 935                                                                                                     Romance
## 936                                                                                                 Documentary
## 937                                                                                      Psychological thriller
## 938                                                                                                 Documentary
## 939                                                                                                       Drama
## 940                                                                                                 Documentary
## 941                                                                                                 Documentary
## 942                                                                                                 Documentary
## 943                                                                                             Science fiction
## 944                                                                                                 Documentary
## 945                                                                                                Spy thriller
## 946                                                                                                 Crime drama
## 947                                                                                                Spy thriller
## 948                                                                                                 Documentary
## 949                                                                                               Anime/Fantasy
## 950                                                                                                       Drama
## 951                                                                                     Animated musical comedy
## 952                                                                                                 Documentary
## 953                                                                                       Anime/Science fiction
## 954                                                                                                       Drama
## 955                                                                                                 Documentary
## 956                                                                                                 Documentary
## 957                                                                                                      Action
## 958                                                                                                 Documentary
## 959                                                                                                       Drama
## 960                                                                                                 Documentary
## 961                                                                                                       Drama
## 962                                                                                                      Comedy
## 963                                                                                                 Documentary
## 964                                                                                              Romantic drama
## 965                                                                                                Variety Show
## 966                                                                                                       Drama
## 967                                                                                                       Drama
## 968                                                                                                       Drama
## 969                                                                                                 Documentary
## 970                                                                                                Comedy-drama
## 971                                                                                            Superhero/Action
## 972                                                                                                 Documentary
## 973                                                                                                       Drama
## 974                                                                                                       Drama
## 975                                                                                                       Drama
## 976                                                                                         Biographical/Comedy
## 977                                                                                                 Documentary
## 978                                                                                                 Documentary
## 979                                                                                                 Documentary
## 980                                                                                             Romantic comedy
## 981                                                                                                 Documentary
## 982                                                                                                      Comedy
## 983                                                                                                    Thriller
## 984                                                                                                      Comedy
## 985                                                                                                 Documentary
## 986                                                                                                 Documentary
## 987                                                                                                 Documentary
## 988                                                                                                 Documentary
## 989                                                                                                 Documentary
## 990                                                                                                       Drama
## 991                                                                                                       Drama
## 992                                                                                       Aftershow / Interview
## 993                                                                                                       Drama
## 994                                                                                                       Drama
## 995                                                                                                 Documentary
## 996                                                                                                       Drama
## 997                                                                                                 Documentary
## 998                                                                                                    Thriller
## 999                                                                                                 Documentary
## 1000                                                                                                Documentary
## 1001                                                                                                Documentary
## 1002                                                                                          Animation / Short
## 1003                                                                                                      Drama
## 1004                                                                                                Documentary
## 1005                                                                                                     Biopic
## 1006                                                                                                    Romance
## 1007                                                                                            Historical-epic
## 1008                                                                                               Comedy-drama
## 1009                                                                                                Documentary
## 1010                                                                                                Documentary
## 1011                                                                                                Documentary
## 1012                                                                                                Documentary
## 1013                                                                                                    Romance
## 1014                                                                                                Crime drama
## 1015                                                                                           Comedy / Musical
## 1016                                                                                               Comedy-drama
## 1017                                                                                                Documentary
## 1018                                                                                                Documentary
## 1019                                                                                      Aftershow / Interview
## 1020                                                                                                Documentary
## 1021                                                                                                Documentary
## 1022                                                                                                Documentary
## 1023                                                                                                      Drama
## 1024                                                                                      Aftershow / Interview
## 1025                                                                                                Documentary
## 1026                                                                                                Documentary
## 1027                                                                                                Documentary
## 1028                                                                                                Documentary
## 1029                                                                                                Documentary
## 1030                                                                                                Documentary
## 1031                                                                                         Animation / Comedy
## 1032                                                                                                     Comedy
## 1033                                                                         Christmas/Fantasy/Adventure/Comedy
## 1034                                                                                                     Biopic
## 1035                                                                                            Action-thriller
## 1036                                                                                      Aftershow / Interview
## 1037                                                                                                  Animation
## 1038                                                                                                  Animation
## 1039                                                                                                      Drama
## 1040                                                                                                Documentary
## 1041                                                                                                Documentary
## 1042                                                                                          Mentalism special
## 1043                                                                                                Documentary
## 1044                                                                                                Documentary
## 1045                                                                                                Documentary
## 1046                                                                                                Crime drama
## 1047                                                                                                Documentary
## 1048                                                                                                Documentary
## 1049                                                                                                Documentary
## 1050                                                                                                Documentary
## 1051                                                                                                Documentary
## 1052                                                                                               One-man show
## 1053                                                                                                Documentary
## 1054                                                                                                Documentary
## 1055                                                                                                      Drama
## 1056                                                                                                Documentary
## 1057                                                                                                Documentary
## 1058                                                                                                Documentary
## 1059                                                                                     Psychological thriller
## 1060                                                                                                      Drama
## 1061                                                                                                Documentary
## 1062                                                                                                      Drama
## 1063                                                                                            Romantic comedy
## 1064                                                                                                Documentary
## 1065                                                                                                Documentary
## 1066                                                                                                      Drama
## 1067                                                                                                Documentary
## 1068                                                                                                Documentary
## 1069                                                                                                Documentary
## 1070                                                                                                Documentary
## 1071                                                                                            Romantic comedy
## 1072                                                                                               Drama-Comedy
## 1073                                                                                                      Drama
## 1074                                                                                 Coming-of-age comedy-drama
## 1075                                                                                                      Drama
## 1076                                                                                                Crime drama
## 1077                                                                                                     Comedy
## 1078                                                                                                      Drama
## 1079                                                                                                Documentary
## 1080                                                                                           Historical drama
## 1081                                                                                                  Making-of
## 1082                                                                                                        War
## 1083                                                                                                Documentary
## 1084                                                                                                     Biopic
## 1085                                                                                                Crime drama
## 1086                                                                                                Documentary
## 1087                                                                                                Documentary
## 1088                                                                                                Documentary
## 1089                                                                                                      Drama
## 1090                                                                                                Documentary
## 1091                                                                                                  Animation
## 1092                                                                                           Action-adventure
## 1093                                                                                                Crime drama
## 1094                                                                                                   Thriller
## 1095                                                                                                Documentary
## 1096                                                                                                Documentary
## 1097                                                                                                Documentary
## 1098                                                                                          Animation / Short
## 1099                                                                                                Documentary
## 1100                                                                                                Documentary
## 1101                                                                                                    Western
## 1102                                                                                                Documentary
## 1103                                                                                               Comedy-drama
## 1104                                                                                                Documentary
## 1105                                                                                                Documentary
## 1106                                                                                                Documentary
## 1107                                                                                                Documentary
## 1108                                                                                                Documentary
## 1109                                                                                                Documentary
## 1110                                                                                               Concert Film
## 1111                                                                                                Documentary
## 1112                                                                                                Documentary
## 1113                                                                                      Aftershow / Interview
## 1114                                                                                                Documentary
## 1115                                                                                                Documentary
## 1116                                                                                                Documentary
## 1117                                                                                               Concert Film
## 1118                                                                                                Documentary
## 1119                                                                                                Documentary
## 1120                                                                                                Documentary
## 1121                                                                                                Documentary
## 1122                                                                                Animation / Science Fiction
## 1123                                                                                                Documentary
## 1124                                                                                               Variety show
## 1125                                                                                                Documentary
## 1126                                                                                                Documentary
## 1127                                                                                                Documentary
## 1128                                                                                      Anthology/Dark comedy
## 1129                                                                                                Documentary
## 1130                                                                                                Documentary
## 1131                                                                                                Documentary
## 1132                                                                                                Documentary
## 1133                                                                                                Documentary
## 1134                                                                                                      Drama
## 1135                                                                                                Documentary
## 1136                                                                                                      Drama
## 1137                                                                                            Musical / Short
## 1138                                                                                                  War drama
## 1139                                                                                                Documentary
## 1140                                                                                                Documentary
## 1141                                                                                                Documentary
## 1142                                                                                               Concert Film
## 1143                                                                                                  Making-of
## 1144                                                                                                      Drama
## 1145                                                                                          Animation / Short
## 1146                                                                                                Crime drama
## 1147                                                                                                      Drama
## 1148                                                                                                Documentary
## 1149                                                                                                Documentary
## 1150                                                                                                      Drama
## 1151                                                                                                Documentary
## 1152                                                                                                Documentary
## 1153                                                                                                Documentary
## 1154                                                                                                Documentary
## 1155                                                                                                Documentary
## 1156                                                                                                Documentary
## 1157                                                                                                Documentary
## 1158                                                                       Animation/Christmas/Comedy/Adventure
## 1159                                                                                                Documentary
## 1160                                                                                                Documentary
## 1161                                                                                                Documentary
## 1162                                                                                                Documentary
## 1163                                                                                               Concert Film
## 1164                                                                                               Concert Film
## 1165                                                                                                Documentary
## 1166                                                                                               One-man show
## 1167                                                                                                Documentary
## 1168                                                                                                Documentary
## 1169                                                                                             August 5, 2019
## 1170                                                                                            August 21, 2020
## 1171                                                                                          December 26, 2019
## 1172                                                                                           January 19, 2018
## 1173                                                                                           October 30, 2020
## 1174                                                                                           November 1, 2019
## 1175                                                                                           December 4, 2020
## 1176                                                                                               June 5, 2020
## 1177                                                                                             March 23, 2018
## 1178                                                                                               May 18, 2021
## 1179                                                                                             April 22, 2021
## 1180                                                                                          November 27, 2020
## 1181                                                                                         September 18, 2020
## 1182                                                                                            October 1, 2020
## 1183                                                                                          November 22, 2016
## 1184                                                                                          December 19, 2019
## 1185                                                                                            January 1, 2020
## 1186                                                                                          February 21, 2020
## 1187                                                                                            January 1, 2021
## 1188                                                                                            August 25, 2017
## 1189                                                                                         September 13, 2019
## 1190                                                                                              July 18, 2019
## 1191                                                                                            August 16, 2019
## 1192                                                                                          February 26, 2021
## 1193                                                                                              April 9, 2021
## 1194                                                                                              July 16, 2020
## 1195                                                                                              April 2, 2021
## 1196                                                                                              July 31, 2020
## 1197                                                                                          February 10, 2021
## 1198                                                                                           December 7, 2018
## 1199                                                                                               May 24, 2019
## 1200                                                                                           October 28, 2016
## 1201                                                                                          February 22, 2019
## 1202                                                                                           December 3, 2019
## 1203                                                                                           October 25, 2019
## 1204                                                                                              July 15, 2020
## 1205                                                                                              July 14, 2020
## 1206                                                                                          November 30, 2020
## 1207                                                                                           January 18, 2019
## 1208                                                                                              March 5, 2021
## 1209                                                                                              April 2, 2020
## 1210                                                                                            October 2, 2020
## 1211                                                                                          December 25, 2020
## 1212                                                                                           December 4, 2020
## 1213                                                                                            January 6, 2017
## 1214                                                                                                May 1, 2020
## 1215                                                                                           October 28, 2020
## 1216                                                                                           January 20, 2017
## 1217                                                                                             April 10, 2020
## 1218                                                                                          December 11, 2015
## 1219                                                                                             April 17, 2020
## 1220                                                                                            August 14, 2020
## 1221                                                                                          November 28, 2019
## 1222                                                                                           October 30, 2020
## 1223                                                                                           January 23, 2020
## 1224                                                                                              July 13, 2018
## 1225                                                                                           October 15, 2020
## 1226                                                                                              July 15, 2016
## 1227                                                                                          February 11, 2021
## 1228                                                                                           October 22, 2020
## 1229                                                                                           January 13, 2017
## 1230                                                                                              April 3, 2020
## 1231                                                                                             April 20, 2018
## 1232                                                                                          February 25, 2021
## 1233                                                                                              July 23, 2020
## 1234                                                                                          September 8, 2017
## 1235                                                                                            August 21, 2019
## 1236                                                                                               July 3, 2020
## 1237                                                                                          November 22, 2020
## 1238                                                                                              July 20, 2018
## 1239                                                                                          February 22, 2019
## 1240                                                                                               May 26, 2021
## 1241                                                                                          February 14, 2017
## 1242                                                                                                May 5, 2017
## 1243                                                                                            October 7, 2020
## 1244                                                                                               May 25, 2018
## 1245                                                                                               May 24, 2019
## 1246                                                                                             April 14, 2017
## 1247                                                                                               May 17, 2019
## 1248                                                                                               May 14, 2019
## 1249                                                                                           February 5, 2021
## 1250                                                                                         September 13, 2019
## 1251                                                                                          November 27, 2020
## 1252                                                                                             April 27, 2018
## 1253                                                                                          November 30, 2018
## 1254                                                                                            August 30, 2019
## 1255                                                                                             April 30, 2020
## 1256                                                                                            August 12, 2020
## 1257                                                                                               May 28, 2020
## 1258                                                                                          September 7, 2018
## 1259                                                                                             April 29, 2021
## 1260                                                                                              June 24, 2018
## 1261                                                                                             April 12, 2019
## 1262                                                                                            August 26, 2016
## 1263                                                                                           October 15, 2020
## 1264                                                                                           December 5, 2019
## 1265                                                                                                May 3, 2019
## 1266                                                                                         September 18, 2020
## 1267                                                                                          September 2, 2020
## 1268                                                                                             March 23, 2018
## 1269                                                                                              March 6, 2020
## 1270                                                                                            October 4, 2019
## 1271                                                                                              April 2, 2021
## 1272                                                                                            August 11, 2017
## 1273                                                                                           January 15, 2021
## 1274                                                                                          November 19, 2020
## 1275                                                                                               July 1, 2020
## 1276                                                                                           December 4, 2015
## 1277                                                                                           October 26, 2018
## 1278                                                                                           December 1, 2019
## 1279                                                                                             April 28, 2021
## 1280                                                                                           October 16. 2019
## 1281                                                                                          November 15, 2019
## 1282                                                                                           February 8, 2019
## 1283                                                                                             April 10, 2020
## 1284                                                                                          February 23, 2018
## 1285                                                                                            October 2, 2020
## 1286                                                                                          February 11, 2021
## 1287                                                                                             April 15, 2021
## 1288                                                                                           January 19, 2018
## 1289                                                                                           February 4, 2018
## 1290                                                                                          November 21, 2019
## 1291                                                                                               July 6, 2018
## 1292                                                                                            August 10, 2018
## 1293                                                                                              April 5, 2019
## 1294                                                                                               May 10, 2019
## 1295                                                                                           October 12, 2017
## 1296                                                                                               July 7, 2016
## 1297                                                                                           January 15, 2021
## 1298                                                                                            August 29, 2019
## 1299                                                                                         September 28, 2018
## 1300                                                                                          September 3, 2020
## 1301                                                                                              June 19, 2020
## 1302                                                                                           October 27, 2020
## 1303                                                                                           January 11, 2019
## 1304                                                                                           February 5, 2021
## 1305                                                                                          December 23, 2020
## 1306                                                                                         September 16, 2020
## 1307                                                                                            August 21, 2020
## 1308                                                                                            October 2, 2020
## 1309                                                                                             April 14, 2021
## 1310                                                                                             March 26, 2021
## 1311                                                                                             March 25, 2021
## 1312                                                                                          December 15, 2017
## 1313                                                                                         September 11, 2020
## 1314                                                                                           December 8, 2017
## 1315                                                                                           October 18, 2019
## 1316                                                                                            October 9, 2020
## 1317                                                                                               May 16, 2019
## 1318                                                                                            January 4, 2019
## 1319                                                                                          September 1, 2017
## 1320                                                                                              June 18, 2020
## 1321                                                                                          December 12, 2018
## 1322                                                                                              July 12, 2019
## 1323                                                                                             April 14, 2021
## 1324                                                                                               May 27, 2016
## 1325                                                                                           November 2, 2018
## 1326                                                                                               May 14, 2021
## 1327                                                                                               May 13, 2020
## 1328                                                                                           February 1, 2019
## 1329                                                                                             March 12, 2021
## 1330                                                                                             March 29, 2019
## 1331                                                                                          December 14, 2020
## 1332                                                                                          November 17, 2017
## 1333                                                                                                May 1, 2020
## 1334                                                                                           November 1, 2019
## 1335                                                                                          December 16, 2016
## 1336                                                                                             April 27, 2018
## 1337                                                                                               June 5, 2020
## 1338                                                                                            August 21, 2020
## 1339                                                                                              July 27, 2018
## 1340                                                                                             March 30, 2018
## 1341                                                                                               May 14, 2021
## 1342                                                                                           November 8, 2019
## 1343                                                                                           October 13, 2016
## 1344                                                                                           November 5, 2020
## 1345                                                                                          November 30, 2018
## 1346                                                                                             April 30, 2020
## 1347                                                                                             April 17, 2020
## 1348                                                                                             April 28, 2017
## 1349                                                                                          September 7, 2018
## 1350                                                                                             April 28, 2017
## 1351                                                                                             April 29, 2016
## 1352                                                                                              June 29, 2018
## 1353                                                                                            August 24, 2018
## 1354                                                                                         September 10, 2020
## 1355                                                                                           December 7, 2020
## 1356                                                                                              July 24, 2020
## 1357                                                                                             April 12, 2019
## 1358                                                                                          November 11, 2020
## 1359                                                                                            October 2, 2020
## 1360                                                                                              April 6, 2018
## 1361                                                                                           January 17, 2020
## 1362                                                                                              April 6, 2018
## 1363                                                                                               May 21, 2021
## 1364                                                                                          November 16, 2018
## 1365                                                                                          November 15, 2019
## 1366                                                                                              July 16, 2019
## 1367                                                                                           February 7, 2020
## 1368                                                                                         September 28, 2018
## 1369                                                                                             March 27, 2020
## 1370                                                                                             March 27, 2020
## 1371                                                                                            January 1, 2021
## 1372                                                                                           January 12, 2018
## 1373                                                                                          December 11, 2020
## 1374                                                                                          November 11, 2016
## 1375                                                                                             March 20, 2020
## 1376                                                                                             April 13, 2018
## 1377                                                                                                May 4, 2018
## 1378                                                                                           January 27, 2017
## 1379                                                                                             August 9, 2019
## 1380                                                                                              March 8, 2019
## 1381                                                                                              June 14, 2019
## 1382                                                                                            August 14, 2020
## 1383                                                                                           October 21, 2020
## 1384                                                                                          November 25, 2020
## 1385                                                                                               May 11, 2018
## 1386                                                                                          November 16, 2018
## 1387                                                                                          February 12, 2020
## 1388                                                                                               May 26, 2017
## 1389                                                                                          December 13, 2019
## 1390                                                                                         September 20, 2019
## 1391                                                                                             March 10, 2017
## 1392                                                                                             April 28, 2017
## 1393                                                                                             March 17, 2017
## 1394                                                                                           January 29, 2021
## 1395                                                                                           October 28, 2020
## 1396                                                                                           November 1, 2019
## 1397                                                                                               May 29, 2015
## 1398                                                                                             August 3, 2018
## 1399                                                                                             March 13, 2020
## 1400                                                                                             August 2, 2019
## 1401                                                                                             March 18, 2016
## 1402                                                                                           October 30, 2020
## 1403                                                                                             April 17, 2020
## 1404                                                                                            January 8, 2021
## 1405                                                                                              April 1, 2021
## 1406                                                                                          November 10, 2017
## 1407                                                                                               May 22, 2020
## 1408                                                                                             March 24, 2017
## 1409                                                                                               May 24, 2019
## 1410                                                                                           January 15, 2021
## 1411                                                                                            August 28, 2020
## 1412                                                                                             August 7, 2020
## 1413                                                                                          November 20, 2020
## 1414                                                                                               May 26, 2021
## 1415                                                                                           January 29, 2021
## 1416                                                                                           November 6, 2020
## 1417                                                                                            August 17, 2020
## 1418                                                                                              April 9, 2021
## 1419                                                                                           February 8, 2019
## 1420                                                                                         September 27, 2019
## 1421                                                                                              June 19, 2020
## 1422                                                                                            August 14, 2020
## 1423                                                                                              July 24, 2020
## 1424                                                                                             March 23, 2018
## 1425                                                                                             April 19, 2019
## 1426                                                                                              March 6, 2020
## 1427                                                                                         September 14, 2018
## 1428                                                                                             April 27, 2018
## 1429                                                                                           December 1, 2017
## 1430                                                                                              April 7, 2017
## 1431                                                                                           October 20, 2017
## 1432                                                                                               May 22, 2019
## 1433                                                                                               June 8, 2018
## 1434                                                                                           October 12, 2018
## 1435                                                                                             March 16, 2018
## 1436                                                                                          December 22, 2017
## 1437                                                                                               May 18, 2018
## 1438                                                                                              April 2, 2021
## 1439                                                                                              June 19, 2020
## 1440                                                                                             March 18, 2021
## 1441                                                                                             April 13, 2018
## 1442                                                                                           January 28, 2021
## 1443                                                                                             April 19, 2019
## 1444                                                                                               May 26, 2021
## 1445                                                                                          November 24, 2020
## 1446                                                                                           January 25, 2019
## 1447                                                                                          December 21, 2018
## 1448                                                                                             April 21, 2017
## 1449                                                                                               June 9, 2017
## 1450                                                                                           December 9, 2016
## 1451                                                                                           October 13, 2017
## 1452                                                                                             March 31, 2017
## 1453                                                                                           October 11, 2019
## 1454                                                                                           October 18, 2019
## 1455                                                                                             March 29, 2019
## 1456                                                                                              March 9, 2018
## 1457                                                                                             April 23, 2020
## 1458                                                                                          February 12, 2021
## 1459                                                                                            August 28, 2019
## 1460                                                                                             March 27, 2020
## 1461                                                                                             August 5, 2020
## 1462                                                                                          December 21, 2020
## 1463                                                                                         September 16, 2016
## 1464                                                                                         September 25, 2019
## 1465                                                                                          December 24, 2019
## 1466                                                                                             March 30, 2018
## 1467                                                                                           October 11, 2019
## 1468                                                                                          February 16, 2018
## 1469                                                                                          February 14, 2020
## 1470                                                                                            August 20, 2020
## 1471                                                                                          February 11, 2021
## 1472                                                                                             April 29, 2020
## 1473                                                                                          December 13, 2014
## 1474                                                                                         September 21, 2018
## 1475                                                                                           October 23, 2020
## 1476                                                                                           October 12, 2019
## 1477                                                                                         September 15. 2017
## 1478                                                                                         September 27, 2019
## 1479                                                                                             March 16, 2018
## 1480                                                                                           January 14, 2021
## 1481                                                                                                May 5, 2017
## 1482                                                                                             March 25, 2020
## 1483                                                                                             April 22, 2020
## 1484                                                                                             March 13, 2019
## 1485                                                                                         September 28, 2018
## 1486                                                                                              March 8, 2019
## 1487                                                                                           October 20, 2017
## 1488                                                                                           February 9, 2018
## 1489                                                                                           October 28, 2019
## 1490                                                                                          February 28, 2020
## 1491                                                                                            August 28, 2020
## 1492                                                                                             March 19, 2020
## 1493                                                                                             March 21, 2019
## 1494                                                                                          December 11, 2020
## 1495                                                                                             April 17, 2021
## 1496                                                                                               May 31, 2019
## 1497                                                                                              June 12, 2020
## 1498                                                                                              April 7, 2021
## 1499                                                                                              June 26, 2020
## 1500                                                                                         September 29, 2017
## 1501                                                                                           October 30, 2020
## 1502                                                                                          November 13, 2020
## 1503                                                                                              June 14, 2019
## 1504                                                                                              June 15, 2018
## 1505                                                                                                May 7, 2021
## 1506                                                                                           December 7, 2018
## 1507                                                                                              June 24, 2020
## 1508                                                                                              June 23, 2017
## 1509                                                                                               May 12, 2021
## 1510                                                                                              June 15, 2018
## 1511                                                                                              July 28, 2017
## 1512                                                                                             April 10, 2020
## 1513                                                                                             April 21, 2017
## 1514                                                                                           January 20, 2020
## 1515                                                                                             March 26, 2021
## 1516                                                                                          December 21, 2018
## 1517                                                                                              June 24, 2020
## 1518                                                                                          February 26, 2021
## 1519                                                                                               June 7, 2019
## 1520                                                                                            August 19, 2016
## 1521                                                                                          September 4, 2020
## 1522                                                                                           October 25, 2019
## 1523                                                                                                May 7, 2021
## 1524                                                                                              June 29, 2018
## 1525                                                                                           December 7, 2018
## 1526                                                                                          November 23, 2020
## 1527                                                                                           February 5, 2021
## 1528                                                                                           December 7, 2018
## 1529                                                                                         September 14, 2018
## 1530                                                                                            August 20, 2020
## 1531                                                                                              July 31, 2019
## 1532                                                                                           January 15, 2021
## 1533                                                                                              June 18, 2020
## 1534                                                                                             April 16, 2021
## 1535                                                                                             April 16, 2021
## 1536                                                                                          November 20, 2019
## 1537                                                                                               May 20, 2017
## 1538                                                                                               May 27, 2021
## 1539                                                                                              June 16, 2017
## 1540                                                                                           January 11, 2021
## 1541                                                                                             April 24, 2020
## 1542                                                                                          December 11, 2020
## 1543                                                                                          November 24, 2020
## 1544                                                                                         September 15, 2020
## 1545                                                                                           February 3, 2017
## 1546                                                                                           December 3, 2020
## 1547                                                                                           October 28, 2019
## 1548                                                                                           February 5, 2021
## 1549                                                                                           February 7, 2017
## 1550                                                                                              March 3, 2021
## 1551                                                                                              April 9, 2021
## 1552                                                                                             March 12, 2021
## 1553                                                                                              July 10, 2019
## 1554                                                                                              July 29, 2016
## 1555                                                                                              July 10, 2020
## 1556                                                                                              July 15. 2016
## 1557                                                                                           October 18, 2019
## 1558                                                                                           October 10, 2018
## 1559                                                                                           October 28, 2016
## 1560                                                                                           January 26, 2018
## 1561                                                                                             March 20, 2020
## 1562                                                                                         September 21, 2020
## 1563                                                                                                May 3, 2019
## 1564                                                                                               May 31, 2019
## 1565                                                                                                May 6, 2020
## 1566                                                                                             August 3, 2018
## 1567                                                                                              June 29, 2018
## 1568                                                                                          December 27, 2020
## 1569                                                                                         September 17, 2020
## 1570                                                                                               May 11, 2020
## 1571                                                                                         September 12, 2017
## 1572                                                                                             April 20, 2018
## 1573                                                                                          November 21, 2017
## 1574                                                                                            October 2, 2020
## 1575                                                                                         September 30, 2020
## 1576                                                                                         September 30, 2020
## 1577                                                                                          November 13, 2020
## 1578                                                                                           November 2, 2018
## 1579                                                                                           February 9, 2018
## 1580                                                                                              July 14, 2017
## 1581                                                                                            January 6, 2021
## 1582                                                                                          December 24, 2020
## 1583                                                                                         September 30, 2016
## 1584                                                                                            October 8, 2020
## 1585                                                                                              March 1, 2021
## 1586                                                                                          December 28, 2020
## 1587                                                                                          February 24, 2017
## 1588                                                                                               May 19, 2017
## 1589                                                                                           December 4, 2020
## 1590                                                                                         September 29, 2017
## 1591                                                                                           November 9, 2018
## 1592                                                                                             March 26, 2021
## 1593                                                                                           October 12, 2018
## 1594                                                                                           February 9, 2018
## 1595                                                                                               June 3, 2020
## 1596                                                                                              July 10, 2020
## 1597                                                                                                May 1, 2020
## 1598                                                                                             March 29, 2019
## 1599                                                                                               May 23, 2019
## 1600                                                                                           October 13, 2017
## 1601                                                                                           October 12, 2018
## 1602                                                                                         September 22, 2017
## 1603                                                                                           November 3, 2020
## 1604                                                                                           October 13, 2017
## 1605                                                                                          November 20, 2019
## 1606                                                                                         September 15, 2019
## 1607                                                                                          December 18, 2020
## 1608                                                                                          December 18, 2020
## 1609                                                                                             March 17, 2021
## 1610                                                                                          February 23, 2021
## 1611                                                                                             April 26, 2019
## 1612                                                                                               May 17, 2019
## 1613                                                                                             March 22, 2019
## 1614                                                                                          September 1, 2017
## 1615                                                                                             August 9, 2019
## 1616                                                                                           December 9, 2020
## 1617                                                                                          November 22, 2018
## 1618                                                                                             March 22, 2019
## 1619                                                                                           October 19, 2018
## 1620                                                                                           January 26, 2017
## 1621                                                                                          November 30, 2018
## 1622                                                                                           December 1, 2020
## 1623                                                                                              June 19, 2019
## 1624                                                                                             April 22, 2020
## 1625                                                                                          November 27, 2020
## 1626                                                                                           October 19, 2018
## 1627                                                                                          December 27, 2019
## 1628                                                                                                May 4, 2018
## 1629                                                                                         September 10, 2019
## 1630                                                                                               May 14, 2021
## 1631                                                                                             April 20, 2019
## 1632                                                                                           October 27, 2020
## 1633                                                                                               May 26, 2017
## 1634                                                                                         September 18, 2015
## 1635                                                                                                May 1, 2019
## 1636                                                                                          November 13, 2018
## 1637                                                                                             March 18, 2016
## 1638                                                                                           October 20, 2017
## 1639                                                                                            January 7, 2021
## 1640                                                                                              April 6, 2018
## 1641                                                                                           November 2, 2018
## 1642                                                                                           October 15, 2020
## 1643                                                                                         September 16, 2020
## 1644                                                                                           January 29, 2021
## 1645                                                                                              July 24, 2019
## 1646                                                                                           January 22, 2021
## 1647                                                                                            August 17, 2018
## 1648                                                                                         September 30, 2020
## 1649                                                                                         September 23, 2016
## 1650                                                                                         September 15, 2017
## 1651                                                                                           January 18, 2019
## 1652                                                                                           October 28, 2016
## 1653                                                                                             April 10, 2020
## 1654                                                                                              March 8, 2018
## 1655                                                                                          February 14, 2018
## 1656                                                                                          February 22, 2019
## 1657                                                                                            October 5, 2018
## 1658                                                                                           October 18, 2019
## 1659                                                                                                May 1, 2018
## 1660                                                                                           January 18, 2019
## 1661                                                                                            October 9, 2020
## 1662                                                                                             April 30, 2021
## 1663                                                                                              June 19, 2019
## 1664                                                                                           November 1, 2019
## 1665                                                                                           October 29, 2019
## 1666                                                                                            October 7, 2016
## 1667                                                                                            August 10, 2018
## 1668                                                                                           October 25, 2019
## 1669                                                                                           October 11, 2019
## 1670                                                                                         September 13, 2016
## 1671                                                                                              July 17, 2020
## 1672                                                                                               May 12, 2017
## 1673                                                                                               May 27, 2020
## 1674                                                                                               July 8, 2020
## 1675                                                                                           October 13, 2020
## 1676                                                                                              June 28, 2017
## 1677                                                                                         September 12, 2018
## 1678                                                                                              July 31, 2020
## 1679                                                                                           January 11, 2019
## 1680                                                                                           February 8, 2019
## 1681                                                                                           October 28, 2020
## 1682                                                                                              March 8, 2020
## 1683                                                                                           October 14, 2016
## 1684                                                                                             April 29, 2016
## 1685                                                                                          November 16, 2018
## 1686                                                                                            October 6, 2017
## 1687                                                                                              June 24, 2016
## 1688                                                                                               May 22, 2015
## 1689                                                                                            August 21, 2019
## 1690                                                                                           November 1, 2019
## 1691                                                                                         September 29, 2017
## 1692                                                                                           January 31, 2020
## 1693                                                                                          February 12, 2019
## 1694                                                                                          November 25, 2020
## 1695                                                                                           October 26, 2018
## 1696                                                                                               June 7, 2019
## 1697                                                                                          November 27, 2019
## 1698                                                                                              July 29, 2020
## 1699                                                                                           November 2, 2018
## 1700                                                                                              July 17, 2015
## 1701                                                                                          November 22, 2017
## 1702                                                                                           October 14, 2020
## 1703                                                                                          September 7, 2018
## 1704                                                                                            October 2, 2020
## 1705                                                                                             April 17, 2019
## 1706                                                                                            August 16, 2019
## 1707                                                                                           October 27. 2017
## 1708                                                                                          December 24, 2019
## 1709                                                                                         September 13, 2018
## 1710                                                                                         September 16. 2016
## 1711                                                                                              June 24, 2020
## 1712                                                                                          November 12, 2020
## 1713                                                                                         September 21, 2018
## 1714                                                                                              June 12, 2019
## 1715                                                                                           October 18, 2019
## 1716                                                                                              July 27, 2018
## 1717                                                                                          September 9, 2020
## 1718                                                                                          December 20, 2019
## 1719                                                                                              June 26, 2015
## 1720                                                                                          February 21, 2020
## 1721                                                                                              June 27, 2019
## 1722                                                                                           October 16, 2015
## 1723                                                                                             April 19, 2019
## 1724                                                                                             March 25, 2020
## 1725                                                                                          November 17, 2017
## 1726                                                                                           October 12, 2016
## 1727                                                                                          February 11, 2020
## 1728                                                                                          December 14, 2018
## 1729                                                                                          November 20, 2020
## 1730                                                                                          November 27, 2019
## 1731                                                                                           October 16, 2020
## 1732                                                                                             April 29, 2020
## 1733                                                                                             August 4, 2017
## 1734                                                                                           December 6, 2019
## 1735                                                                                           November 4, 2016
## 1736                                                                                          December 21, 2018
## 1737                                                                                              July 14, 2017
## 1738                                                                                          September 7, 2020
## 1739                                                                                            August 26, 2020
## 1740                                                                                            October 7, 2016
## 1741                                                                                              June 19, 2020
## 1742                                                                                          November 15, 2019
## 1743                                                                                             March 24, 2021
## 1744                                                                                           October 14, 2020
## 1745                                                                                          November 24, 2017
## 1746                                                                                           October 23, 2019
## 1747                                                                                               May 20, 2020
## 1748                                                                                          December 31, 2018
## 1749                                                                                            October 9, 2015
## 1750                                                                                          December 16, 2018
## 1751                                                                                           December 8, 2020
## 1752                                                                                            October 4, 2020
## 1753                                                                                                         58
## 1754                                                                                                         81
## 1755                                                                                                         79
## 1756                                                                                                         94
## 1757                                                                                                         90
## 1758                                                                                                        147
## 1759                                                                                                        112
## 1760                                                                                                        149
## 1761                                                                                                         73
## 1762                                                                                                        139
## 1763                                                                                                         58
## 1764                                                                                                        112
## 1765                                                                                                         97
## 1766                                                                                                        101
## 1767                                                                                                         90
## 1768                                                                                                         25
## 1769                                                                                                        144
## 1770                                                                                                        115
## 1771                                                                                                        102
## 1772                                                                                                        100
## 1773                                                                                                         64
## 1774                                                                                                         97
## 1775                                                                                                         99
## 1776                                                                                                        120
## 1777                                                                                                        105
## 1778                                                                                                         89
## 1779                                                                                                         97
## 1780                                                                                                        107
## 1781                                                                                                         99
## 1782                                                                                                         95
## 1783                                                                                                         37
## 1784                                                                                                         89
## 1785                                                                                                         83
## 1786                                                                                                         46
## 1787                                                                                                         85
## 1788                                                                                                         88
## 1789                                                                                                         86
## 1790                                                                                                        105
## 1791                                                                                                         95
## 1792                                                                                                         80
## 1793                                                                                                          4
## 1794                                                                                                         93
## 1795                                                                                                        100
## 1796                                                                                                        106
## 1797                                                                                                         97
## 1798                                                                                                        106
## 1799                                                                                                        103
## 1800                                                                                                         80
## 1801                                                                                                        101
## 1802                                                                                                        119
## 1803                                                                                                         80
## 1804                                                                                                         89
## 1805                                                                                                         94
## 1806                                                                                                         93
## 1807                                                                                                         96
## 1808                                                                                                        113
## 1809                                                                                                         86
## 1810                                                                                                        100
## 1811                                                                                                        102
## 1812                                                                                                         86
## 1813                                                                                                        104
## 1814                                                                                                         88
## 1815                                                                                                         97
## 1816                                                                                                        105
## 1817                                                                                                         90
## 1818                                                                                                         99
## 1819                                                                                                         10
## 1820                                                                                                        106
## 1821                                                                                                         98
## 1822                                                                                                         94
## 1823                                                                                                        112
## 1824                                                                                                        117
## 1825                                                                                                         70
## 1826                                                                                                         81
## 1827                                                                                                        103
## 1828                                                                                                         94
## 1829                                                                                                         98
## 1830                                                                                                        131
## 1831                                                                                                         87
## 1832                                                                                                         60
## 1833                                                                                                        112
## 1834                                                                                                        102
## 1835                                                                                                         99
## 1836                                                                                                        116
## 1837                                                                                                         92
## 1838                                                                                                         83
## 1839                                                                                                         97
## 1840                                                                                                        112
## 1841                                                                                                        116
## 1842                                                                                                        102
## 1843                                                                                                        121
## 1844                                                                                                         95
## 1845                                                                                                         93
## 1846                                                                                                         92
## 1847                                                                                                         98
## 1848                                                                                                         85
## 1849                                                                                                         78
## 1850                                                                                                        120
## 1851                                                                                                         92
## 1852                                                                                                        101
## 1853                                                                                                        119
## 1854                                                                                                        101
## 1855                                                                                                        112
## 1856                                                                                                         96
## 1857                                                                                                        114
## 1858                                                                                                         97
## 1859                                                                                                        101
## 1860                                                                                                         56
## 1861                                                                                                        100
## 1862                                                                                                         94
## 1863                                                                                                         94
## 1864                                                                                                         21
## 1865                                                                                                        104
## 1866                                                                                                         63
## 1867                                                                                                        100
## 1868                                                                                                        126
## 1869                                                                                                        106
## 1870                                                                                                         86
## 1871                                                                                                        142
## 1872                                                                                                        108
## 1873                                                                                                        102
## 1874                                                                                                         92
## 1875                                                                                                         83
## 1876                                                                                                         94
## 1877                                                                                                         92
## 1878                                                                                                        103
## 1879                                                                                                         89
## 1880                                                                                                         95
## 1881                                                                                                        103
## 1882                                                                                                         97
## 1883                                                                                                        125
## 1884                                                                                                         91
## 1885                                                                                                         90
## 1886                                                                                                         49
## 1887                                                                                                         98
## 1888                                                                                                        107
## 1889                                                                                                        118
## 1890                                                                                                         94
## 1891                                                                                                        103
## 1892                                                                                                         86
## 1893                                                                                                         83
## 1894                                                                                                         97
## 1895                                                                                                         99
## 1896                                                                                                        104
## 1897                                                                                                        102
## 1898                                                                                                         89
## 1899                                                                                                         98
## 1900                                                                                                        125
## 1901                                                                                                         89
## 1902                                                                                                         94
## 1903                                                                                                         94
## 1904                                                                                                         85
## 1905                                                                                                         34
## 1906                                                                                                         86
## 1907                                                                                                         91
## 1908                                                                                                        108
## 1909                                                                                                         95
## 1910                                                                                                        100
## 1911                                                                                                         90
## 1912                                                                                                        112
## 1913                                                                                                         86
## 1914                                                                                                        124
## 1915                                                                                                        107
## 1916                                                                                                         92
## 1917                                                                                                        121
## 1918                                                                                                         90
## 1919                                                                                                        104
## 1920                                                                                                         92
## 1921                                                                                                        114
## 1922                                                                                                         98
## 1923                                                                                                         95
## 1924                                                                                                         78
## 1925                                                                                                        107
## 1926                                                                                                         92
## 1927                                                                                                         95
## 1928                                                                                                         96
## 1929                                                                                                        118
## 1930                                                                                                        105
## 1931                                                                                                         94
## 1932                                                                                                         52
## 1933                                                                                                        105
## 1934                                                                                                         95
## 1935                                                                                                        100
## 1936                                                                                                         97
## 1937                                                                                                         89
## 1938                                                                                                        102
## 1939                                                                                                         96
## 1940                                                                                                        131
## 1941                                                                                                         89
## 1942                                                                                                         93
## 1943                                                                                                        111
## 1944                                                                                                         75
## 1945                                                                                                        120
## 1946                                                                                                         96
## 1947                                                                                                        148
## 1948                                                                                                         94
## 1949                                                                                                        107
## 1950                                                                                                         32
## 1951                                                                                                        104
## 1952                                                                                                         23
## 1953                                                                                                        111
## 1954                                                                                                         83
## 1955                                                                                                         53
## 1956                                                                                                         95
## 1957                                                                                                        132
## 1958                                                                                                         98
## 1959                                                                                                        108
## 1960                                                                                                        106
## 1961                                                                                                        104
## 1962                                                                                                         90
## 1963                                                                                                        106
## 1964                                                                                                         90
## 1965                                                                                                         97
## 1966                                                                                                        113
## 1967                                                                                                        123
## 1968                                                                                                        115
## 1969                                                                                                        105
## 1970                                                                                                        101
## 1971                                                                                                        102
## 1972                                                                                                        122
## 1973                                                                                                        128
## 1974                                                                                                         82
## 1975                                                                                                        102
## 1976                                                                                                         80
## 1977                                                                                                         94
## 1978                                                                                                        123
## 1979                                                                                                        104
## 1980                                                                                                         85
## 1981                                                                                                         84
## 1982                                                                                                        103
## 1983                                                                                                         95
## 1984                                                                                                        100
## 1985                                                                                                         89
## 1986                                                                                                        116
## 1987                                                                                                        118
## 1988                                                                                                         96
## 1989                                                                                                        114
## 1990                                                                                                         99
## 1991                                                                                                         87
## 1992                                                                                                         92
## 1993                                                                                                         90
## 1994                                                                                                         95
## 1995                                                                                                         96
## 1996                                                                                                         93
## 1997                                                                                                         42
## 1998                                                                                                         92
## 1999                                                                                                        106
## 2000                                                                                                        151
## 2001                                                                                                        101
## 2002                                                                                                        114
## 2003                                                                                                         90
## 2004                                                                                                        115
## 2005                                                                                                         92
## 2006                                                                                                         72
## 2007                                                                                                        139
## 2008                                                                                                         98
## 2009                                                                                                         92
## 2010                                                                                                        111
## 2011                                                                                                         98
## 2012                                                                                                        104
## 2013                                                                                                         95
## 2014                                                                                                         88
## 2015                                                                                                        102
## 2016                                                                                                         30
## 2017                                                                                                         99
## 2018                                                                                                        129
## 2019                                                                                                         87
## 2020                                                                                                        117
## 2021                                                                                                        104
## 2022                                                                                                        111
## 2023                                                                                                        107
## 2024                                                                                                         97
## 2025                                                                                                         98
## 2026                                                                                                         90
## 2027                                                                                                        101
## 2028                                                                                                         72
## 2029                                                                                                         83
## 2030                                                                                                        118
## 2031                                                                                                         44
## 2032                                                                                                        113
## 2033                                                                                                         86
## 2034                                                                                                        108
## 2035                                                                                                         85
## 2036                                                                                                        102
## 2037                                                                                                        151
## 2038                                                                                                         98
## 2039                                                                                                         87
## 2040                                                                                                        120
## 2041                                                                                                        134
## 2042                                                                                                        109
## 2043                                                                                                         85
## 2044                                                                                                        103
## 2045                                                                                                         94
## 2046                                                                                                         97
## 2047                                                                                                         88
## 2048                                                                                                         37
## 2049                                                                                                        112
## 2050                                                                                                        102
## 2051                                                                                                        100
## 2052                                                                                                         96
## 2053                                                                                                        113
## 2054                                                                                                         16
## 2055                                                                                                        119
## 2056                                                                                                         97
## 2057                                                                                                         81
## 2058                                                                                                         98
## 2059                                                                                                         95
## 2060                                                                                                         96
## 2061                                                                                                        107
## 2062                                                                                                         41
## 2063                                                                                                         87
## 2064                                                                                                        101
## 2065                                                                                                         97
## 2066                                                                                                        103
## 2067                                                                                                         90
## 2068                                                                                                        125
## 2069                                                                                                        116
## 2070                                                                                                         99
## 2071                                                                                                         82
## 2072                                                                                                         97
## 2073                                                                                                         28
## 2074                                                                                                        108
## 2075                                                                                                         93
## 2076                                                                                                         74
## 2077                                                                                                         60
## 2078                                                                                                          9
## 2079                                                                                                         21
## 2080                                                                                                        100
## 2081                                                                                                        155
## 2082                                                                                                         55
## 2083                                                                                                        123
## 2084                                                                                                        103
## 2085                                                                                                         93
## 2086                                                                                                        119
## 2087                                                                                                         40
## 2088                                                                                                        120
## 2089                                                                                                         98
## 2090                                                                                                        104
## 2091                                                                                                         91
## 2092                                                                                                         95
## 2093                                                                                                        101
## 2094                                                                                                        105
## 2095                                                                                                         83
## 2096                                                                                                         91
## 2097                                                                                                         83
## 2098                                                                                                         17
## 2099                                                                                                         86
## 2100                                                                                                        124
## 2101                                                                                                         94
## 2102                                                                                                        102
## 2103                                                                                                        118
## 2104                                                                                                         79
## 2105                                                                                                        134
## 2106                                                                                                        126
## 2107                                                                                                         98
## 2108                                                                                                         89
## 2109                                                                                                         58
## 2110                                                                                                         83
## 2111                                                                                                        136
## 2112                                                                                                         98
## 2113                                                                                                        114
## 2114                                                                                                         99
## 2115                                                                                                        130
## 2116                                                                                                         32
## 2117                                                                                                        104
## 2118                                                                                                        142
## 2119                                                                                                         92
## 2120                                                                                                         86
## 2121                                                                                                        106
## 2122                                                                                                         95
## 2123                                                                                                         91
## 2124                                                                                                         89
## 2125                                                                                                        117
## 2126                                                                                                         90
## 2127                                                                                                        117
## 2128                                                                                                         80
## 2129                                                                                                         87
## 2130                                                                                                        101
## 2131                                                                                                         19
## 2132                                                                                                        106
## 2133                                                                                                         54
## 2134                                                                                                        111
## 2135                                                                                                        132
## 2136                                                                                                         97
## 2137                                                                                                        106
## 2138                                                                                                        111
## 2139                                                                                                        124
## 2140                                                                                                        116
## 2141                                                                                                        112
## 2142                                                                                                        144
## 2143                                                                                                         76
## 2144                                                                                                        101
## 2145                                                                                                         92
## 2146                                                                                                         19
## 2147                                                                                                         39
## 2148                                                                                                        102
## 2149                                                                                                         89
## 2150                                                                                                        105
## 2151                                                                                                        101
## 2152                                                                                                         70
## 2153                                                                                                         96
## 2154                                                                                                         85
## 2155                                                                                                         39
## 2156                                                                                                         79
## 2157                                                                                                         73
## 2158                                                                                                        114
## 2159                                                                                                        121
## 2160                                                                                                         28
## 2161                                                                                                         95
## 2162                                                                                                        122
## 2163                                                                                                         23
## 2164                                                                                                        107
## 2165                                                                                                         98
## 2166                                                                                                        108
## 2167                                                                                                         92
## 2168                                                                                                        100
## 2169                                                                                                         97
## 2170                                                                                                          7
## 2171                                                                                                         96
## 2172                                                                                                        100
## 2173                                                                                                        132
## 2174                                                                                                        103
## 2175                                                                                                        121
## 2176                                                                                                        114
## 2177                                                                                                         57
## 2178                                                                                                         95
## 2179                                                                                                         83
## 2180                                                                                                         17
## 2181                                                                                                        105
## 2182                                                                                                        131
## 2183                                                                                                         30
## 2184                                                                                                        112
## 2185                                                                                                         86
## 2186                                                                                                        100
## 2187                                                                                                         14
## 2188                                                                                                        109
## 2189                                                                                                         28
## 2190                                                                                                         64
## 2191                                                                                                         94
## 2192                                                                                                         31
## 2193                                                                                                         99
## 2194                                                                                                        108
## 2195                                                                                                         48
## 2196                                                                                                         84
## 2197                                                                                                         70
## 2198                                                                                                         27
## 2199                                                                                                         45
## 2200                                                                                                        117
## 2201                                                                                                        104
## 2202                                                                                                        108
## 2203                                                                                                        121
## 2204                                                                                                         36
## 2205                                                                                                         30
## 2206                                                                                                         47
## 2207                                                                                                        110
## 2208                                                                                                         92
## 2209                                                                                                         80
## 2210                                                                                                         49
## 2211                                                                                                         73
## 2212                                                                                                         40
## 2213                                                                                                         96
## 2214                                                                                                        106
## 2215                                                                                                         97
## 2216                                                                                                         94
## 2217                                                                                                         78
## 2218                                                                                                         81
## 2219                                                                                                         87
## 2220                                                                                                         91
## 2221                                                                                                         91
## 2222                                                                                                         95
## 2223                                                                                                        126
## 2224                                                                                                         31
## 2225                                                                                                         58
## 2226                                                                                                         41
## 2227                                                                                                        138
## 2228                                                                                                        112
## 2229                                                                                                        114
## 2230                                                                                                        125
## 2231                                                                                                         99
## 2232                                                                                                         82
## 2233                                                                                                         98
## 2234                                                                                                        136
## 2235                                                                                                         97
## 2236                                                                                                        107
## 2237                                                                                                         92
## 2238                                                                                                         39
## 2239                                                                                                        133
## 2240                                                                                                         89
## 2241                                                                                                        124
## 2242                                                                                                         99
## 2243                                                                                                        101
## 2244                                                                                                         97
## 2245                                                                                                        124
## 2246                                                                                                        129
## 2247                                                                                                        121
## 2248                                                                                                        140
## 2249                                                                                                         13
## 2250                                                                                                        108
## 2251                                                                                                         11
## 2252                                                                                                        118
## 2253                                                                                                        121
## 2254                                                                                                         24
## 2255                                                                                                        100
## 2256                                                                                                        101
## 2257                                                                                                        105
## 2258                                                                                                         96
## 2259                                                                                                         47
## 2260                                                                                                        121
## 2261                                                                                                        100
## 2262                                                                                                        149
## 2263                                                                                                         64
## 2264                                                                                                         64
## 2265                                                                                                        114
## 2266                                                                                                         15
## 2267                                                                                                         79
## 2268                                                                                                         90
## 2269                                                                                                        132
## 2270                                                                                                        105
## 2271                                                                                                         97
## 2272                                                                                                         83
## 2273                                                                                                        110
## 2274                                                                                                         39
## 2275                                                                                                         40
## 2276                                                                                                         85
## 2277                                                                                                         26
## 2278                                                                                                         87
## 2279                                                                                                         97
## 2280                                                                                                        118
## 2281                                                                                                         23
## 2282                                                                                                         40
## 2283                                                                                                         98
## 2284                                                                                                         80
## 2285                                                                                                        108
## 2286                                                                                                         79
## 2287                                                                                                         74
## 2288                                                                                                         90
## 2289                                                                                                        137
## 2290                                                                                                         71
## 2291                                                                                                         98
## 2292                                                                                                         70
## 2293                                                                                                         99
## 2294                                                                                                         40
## 2295                                                                                                        104
## 2296                                                                                                        149
## 2297                                                                                                        124
## 2298                                                                                                        144
## 2299                                                                                                         85
## 2300                                                                                                        100
## 2301                                                                                                         94
## 2302                                                                                                        125
## 2303                                                                                                         84
## 2304                                                                                                        117
## 2305                                                                                                         15
## 2306                                                                                                        136
## 2307                                                                                                         76
## 2308                                                                                                        108
## 2309                                                                                                         94
## 2310                                                                                                         90
## 2311                                                                                                         72
## 2312                                                                                                        135
## 2313                                                                                                         12
## 2314                                                                                                        209
## 2315                                                                                                        130
## 2316                                                                                                         82
## 2317                                                                                                        120
## 2318                                                                                                        136
## 2319                                                                                                        112
## 2320                                                                                                        105
## 2321                                                                                                         89
## 2322                                                                                                         85
## 2323                                                                                                        106
## 2324                                                                                                        100
## 2325                                                                                                        107
## 2326                                                                                                         97
## 2327                                                                                                         89
## 2328                                                                                                        109
## 2329                                                                                                        114
## 2330                                                                                                         51
## 2331                                                                                                         85
## 2332                                                                                                        125
## 2333                                                                                                         91
## 2334                                                                                                        153
## 2335                                                                                                         89
## 2336                                                                                                         83
## 2337                                                                                                        2.5
## 2338                                                                                                        2.6
## 2339                                                                                                        2.6
## 2340                                                                                                        3.2
## 2341                                                                                                        3.4
## 2342                                                                                                        3.5
## 2343                                                                                                        3.7
## 2344                                                                                                        3.7
## 2345                                                                                                        3.9
## 2346                                                                                                        4.1
## 2347                                                                                                        4.1
## 2348                                                                                                        4.1
## 2349                                                                                                        4.1
## 2350                                                                                                        4.2
## 2351                                                                                                        4.2
## 2352                                                                                                        4.3
## 2353                                                                                                        4.3
## 2354                                                                                                        4.3
## 2355                                                                                                        4.3
## 2356                                                                                                        4.4
## 2357                                                                                                        4.4
## 2358                                                                                                        4.4
## 2359                                                                                                        4.4
## 2360                                                                                                        4.4
## 2361                                                                                                        4.4
## 2362                                                                                                        4.5
## 2363                                                                                                        4.5
## 2364                                                                                                        4.5
## 2365                                                                                                        4.5
## 2366                                                                                                        4.6
## 2367                                                                                                        4.6
## 2368                                                                                                        4.6
## 2369                                                                                                        4.6
## 2370                                                                                                        4.6
## 2371                                                                                                        4.6
## 2372                                                                                                        4.6
## 2373                                                                                                        4.6
## 2374                                                                                                        4.7
## 2375                                                                                                        4.7
## 2376                                                                                                        4.7
## 2377                                                                                                        4.7
## 2378                                                                                                        4.7
## 2379                                                                                                        4.7
## 2380                                                                                                        4.8
## 2381                                                                                                        4.8
## 2382                                                                                                        4.8
## 2383                                                                                                        4.8
## 2384                                                                                                        4.8
## 2385                                                                                                        4.8
## 2386                                                                                                        4.8
## 2387                                                                                                        4.9
## 2388                                                                                                        4.9
## 2389                                                                                                        4.9
## 2390                                                                                                        4.9
## 2391                                                                                                          5
## 2392                                                                                                          5
## 2393                                                                                                          5
## 2394                                                                                                          5
## 2395                                                                                                          5
## 2396                                                                                                        5.1
## 2397                                                                                                        5.1
## 2398                                                                                                        5.1
## 2399                                                                                                        5.1
## 2400                                                                                                        5.1
## 2401                                                                                                        5.1
## 2402                                                                                                        5.2
## 2403                                                                                                        5.2
## 2404                                                                                                        5.2
## 2405                                                                                                        5.2
## 2406                                                                                                        5.2
## 2407                                                                                                        5.2
## 2408                                                                                                        5.2
## 2409                                                                                                        5.2
## 2410                                                                                                        5.2
## 2411                                                                                                        5.2
## 2412                                                                                                        5.2
## 2413                                                                                                        5.2
## 2414                                                                                                        5.2
## 2415                                                                                                        5.2
## 2416                                                                                                        5.2
## 2417                                                                                                        5.2
## 2418                                                                                                        5.2
## 2419                                                                                                        5.2
## 2420                                                                                                        5.2
## 2421                                                                                                        5.3
## 2422                                                                                                        5.3
## 2423                                                                                                        5.3
## 2424                                                                                                        5.3
## 2425                                                                                                        5.3
## 2426                                                                                                        5.3
## 2427                                                                                                        5.3
## 2428                                                                                                        5.3
## 2429                                                                                                        5.3
## 2430                                                                                                        5.3
## 2431                                                                                                        5.4
## 2432                                                                                                        5.4
## 2433                                                                                                        5.4
## 2434                                                                                                        5.4
## 2435                                                                                                        5.4
## 2436                                                                                                        5.4
## 2437                                                                                                        5.4
## 2438                                                                                                        5.4
## 2439                                                                                                        5.4
## 2440                                                                                                        5.4
## 2441                                                                                                        5.4
## 2442                                                                                                        5.4
## 2443                                                                                                        5.4
## 2444                                                                                                        5.5
## 2445                                                                                                        5.5
## 2446                                                                                                        5.5
## 2447                                                                                                        5.5
## 2448                                                                                                        5.5
## 2449                                                                                                        5.5
## 2450                                                                                                        5.5
## 2451                                                                                                        5.5
## 2452                                                                                                        5.5
## 2453                                                                                                        5.5
## 2454                                                                                                        5.5
## 2455                                                                                                        5.5
## 2456                                                                                                        5.5
## 2457                                                                                                        5.5
## 2458                                                                                                        5.5
## 2459                                                                                                        5.5
## 2460                                                                                                        5.5
## 2461                                                                                                        5.5
## 2462                                                                                                        5.5
## 2463                                                                                                        5.6
## 2464                                                                                                        5.6
## 2465                                                                                                        5.6
## 2466                                                                                                        5.6
## 2467                                                                                                        5.6
## 2468                                                                                                        5.6
## 2469                                                                                                        5.6
## 2470                                                                                                        5.6
## 2471                                                                                                        5.6
## 2472                                                                                                        5.6
## 2473                                                                                                        5.6
## 2474                                                                                                        5.6
## 2475                                                                                                        5.6
## 2476                                                                                                        5.6
## 2477                                                                                                        5.6
## 2478                                                                                                        5.7
## 2479                                                                                                        5.7
## 2480                                                                                                        5.7
## 2481                                                                                                        5.7
## 2482                                                                                                        5.7
## 2483                                                                                                        5.7
## 2484                                                                                                        5.7
## 2485                                                                                                        5.7
## 2486                                                                                                        5.7
## 2487                                                                                                        5.7
## 2488                                                                                                        5.7
## 2489                                                                                                        5.7
## 2490                                                                                                        5.7
## 2491                                                                                                        5.7
## 2492                                                                                                        5.7
## 2493                                                                                                        5.7
## 2494                                                                                                        5.7
## 2495                                                                                                        5.7
## 2496                                                                                                        5.7
## 2497                                                                                                        5.7
## 2498                                                                                                        5.8
## 2499                                                                                                        5.8
## 2500                                                                                                        5.8
## 2501                                                                                                        5.8
## 2502                                                                                                        5.8
## 2503                                                                                                        5.8
## 2504                                                                                                        5.8
## 2505                                                                                                        5.8
## 2506                                                                                                        5.8
## 2507                                                                                                        5.8
## 2508                                                                                                        5.8
## 2509                                                                                                        5.8
## 2510                                                                                                        5.8
## 2511                                                                                                        5.8
## 2512                                                                                                        5.8
## 2513                                                                                                        5.8
## 2514                                                                                                        5.8
## 2515                                                                                                        5.8
## 2516                                                                                                        5.8
## 2517                                                                                                        5.8
## 2518                                                                                                        5.8
## 2519                                                                                                        5.8
## 2520                                                                                                        5.8
## 2521                                                                                                        5.8
## 2522                                                                                                        5.8
## 2523                                                                                                        5.8
## 2524                                                                                                        5.8
## 2525                                                                                                        5.8
## 2526                                                                                                        5.8
## 2527                                                                                                        5.8
## 2528                                                                                                        5.9
## 2529                                                                                                        5.9
## 2530                                                                                                        5.9
## 2531                                                                                                        5.9
## 2532                                                                                                        5.9
## 2533                                                                                                        5.9
## 2534                                                                                                        5.9
## 2535                                                                                                        5.9
## 2536                                                                                                        5.9
## 2537                                                                                                        5.9
## 2538                                                                                                        5.9
## 2539                                                                                                        5.9
## 2540                                                                                                        5.9
## 2541                                                                                                        5.9
## 2542                                                                                                        5.9
## 2543                                                                                                        5.9
## 2544                                                                                                          6
## 2545                                                                                                          6
## 2546                                                                                                          6
## 2547                                                                                                          6
## 2548                                                                                                          6
## 2549                                                                                                          6
## 2550                                                                                                          6
## 2551                                                                                                          6
## 2552                                                                                                          6
## 2553                                                                                                          6
## 2554                                                                                                          6
## 2555                                                                                                          6
## 2556                                                                                                          6
## 2557                                                                                                        6.1
## 2558                                                                                                        6.1
## 2559                                                                                                        6.1
## 2560                                                                                                        6.1
## 2561                                                                                                        6.1
## 2562                                                                                                        6.1
## 2563                                                                                                        6.1
## 2564                                                                                                        6.1
## 2565                                                                                                        6.1
## 2566                                                                                                        6.1
## 2567                                                                                                        6.1
## 2568                                                                                                        6.1
## 2569                                                                                                        6.1
## 2570                                                                                                        6.1
## 2571                                                                                                        6.1
## 2572                                                                                                        6.1
## 2573                                                                                                        6.1
## 2574                                                                                                        6.1
## 2575                                                                                                        6.1
## 2576                                                                                                        6.1
## 2577                                                                                                        6.1
## 2578                                                                                                        6.1
## 2579                                                                                                        6.1
## 2580                                                                                                        6.1
## 2581                                                                                                        6.2
## 2582                                                                                                        6.2
## 2583                                                                                                        6.2
## 2584                                                                                                        6.2
## 2585                                                                                                        6.2
## 2586                                                                                                        6.2
## 2587                                                                                                        6.2
## 2588                                                                                                        6.2
## 2589                                                                                                        6.2
## 2590                                                                                                        6.2
## 2591                                                                                                        6.2
## 2592                                                                                                        6.2
## 2593                                                                                                        6.2
## 2594                                                                                                        6.2
## 2595                                                                                                        6.2
## 2596                                                                                                        6.2
## 2597                                                                                                        6.2
## 2598                                                                                                        6.2
## 2599                                                                                                        6.3
## 2600                                                                                                        6.3
## 2601                                                                                                        6.3
## 2602                                                                                                        6.3
## 2603                                                                                                        6.3
## 2604                                                                                                        6.3
## 2605                                                                                                        6.3
## 2606                                                                                                        6.3
## 2607                                                                                                        6.3
## 2608                                                                                                        6.3
## 2609                                                                                                        6.3
## 2610                                                                                                        6.3
## 2611                                                                                                        6.3
## 2612                                                                                                        6.3
## 2613                                                                                                        6.3
## 2614                                                                                                        6.3
## 2615                                                                                                        6.3
## 2616                                                                                                        6.3
## 2617                                                                                                        6.3
## 2618                                                                                                        6.3
## 2619                                                                                                        6.3
## 2620                                                                                                        6.3
## 2621                                                                                                        6.3
## 2622                                                                                                        6.3
## 2623                                                                                                        6.3
## 2624                                                                                                        6.3
## 2625                                                                                                        6.3
## 2626                                                                                                        6.3
## 2627                                                                                                        6.3
## 2628                                                                                                        6.3
## 2629                                                                                                        6.4
## 2630                                                                                                        6.4
## 2631                                                                                                        6.4
## 2632                                                                                                        6.4
## 2633                                                                                                        6.4
## 2634                                                                                                        6.4
## 2635                                                                                                        6.4
## 2636                                                                                                        6.4
## 2637                                                                                                        6.4
## 2638                                                                                                        6.4
## 2639                                                                                                        6.4
## 2640                                                                                                        6.4
## 2641                                                                                                        6.4
## 2642                                                                                                        6.4
## 2643                                                                                                        6.4
## 2644                                                                                                        6.4
## 2645                                                                                                        6.4
## 2646                                                                                                        6.4
## 2647                                                                                                        6.4
## 2648                                                                                                        6.4
## 2649                                                                                                        6.4
## 2650                                                                                                        6.4
## 2651                                                                                                        6.4
## 2652                                                                                                        6.4
## 2653                                                                                                        6.4
## 2654                                                                                                        6.4
## 2655                                                                                                        6.4
## 2656                                                                                                        6.4
## 2657                                                                                                        6.5
## 2658                                                                                                        6.5
## 2659                                                                                                        6.5
## 2660                                                                                                        6.5
## 2661                                                                                                        6.5
## 2662                                                                                                        6.5
## 2663                                                                                                        6.5
## 2664                                                                                                        6.5
## 2665                                                                                                        6.5
## 2666                                                                                                        6.5
## 2667                                                                                                        6.5
## 2668                                                                                                        6.5
## 2669                                                                                                        6.5
## 2670                                                                                                        6.5
## 2671                                                                                                        6.5
## 2672                                                                                                        6.5
## 2673                                                                                                        6.5
## 2674                                                                                                        6.5
## 2675                                                                                                        6.5
## 2676                                                                                                        6.5
## 2677                                                                                                        6.5
## 2678                                                                                                        6.5
## 2679                                                                                                        6.5
## 2680                                                                                                        6.5
## 2681                                                                                                        6.5
## 2682                                                                                                        6.5
## 2683                                                                                                        6.6
## 2684                                                                                                        6.6
## 2685                                                                                                        6.6
## 2686                                                                                                        6.6
## 2687                                                                                                        6.6
## 2688                                                                                                        6.6
## 2689                                                                                                        6.6
## 2690                                                                                                        6.6
## 2691                                                                                                        6.6
## 2692                                                                                                        6.6
## 2693                                                                                                        6.6
## 2694                                                                                                        6.6
## 2695                                                                                                        6.6
## 2696                                                                                                        6.6
## 2697                                                                                                        6.6
## 2698                                                                                                        6.6
## 2699                                                                                                        6.6
## 2700                                                                                                        6.6
## 2701                                                                                                        6.7
## 2702                                                                                                        6.7
## 2703                                                                                                        6.7
## 2704                                                                                                        6.7
## 2705                                                                                                        6.7
## 2706                                                                                                        6.7
## 2707                                                                                                        6.7
## 2708                                                                                                        6.7
## 2709                                                                                                        6.7
## 2710                                                                                                        6.7
## 2711                                                                                                        6.7
## 2712                                                                                                        6.7
## 2713                                                                                                        6.7
## 2714                                                                                                        6.7
## 2715                                                                                                        6.7
## 2716                                                                                                        6.7
## 2717                                                                                                        6.7
## 2718                                                                                                        6.7
## 2719                                                                                                        6.7
## 2720                                                                                                        6.7
## 2721                                                                                                        6.7
## 2722                                                                                                        6.7
## 2723                                                                                                        6.7
## 2724                                                                                                        6.7
## 2725                                                                                                        6.7
## 2726                                                                                                        6.8
## 2727                                                                                                        6.8
## 2728                                                                                                        6.8
## 2729                                                                                                        6.8
## 2730                                                                                                        6.8
## 2731                                                                                                        6.8
## 2732                                                                                                        6.8
## 2733                                                                                                        6.8
## 2734                                                                                                        6.8
## 2735                                                                                                        6.8
## 2736                                                                                                        6.8
## 2737                                                                                                        6.8
## 2738                                                                                                        6.8
## 2739                                                                                                        6.8
## 2740                                                                                                        6.8
## 2741                                                                                                        6.8
## 2742                                                                                                        6.8
## 2743                                                                                                        6.8
## 2744                                                                                                        6.8
## 2745                                                                                                        6.8
## 2746                                                                                                        6.8
## 2747                                                                                                        6.8
## 2748                                                                                                        6.8
## 2749                                                                                                        6.8
## 2750                                                                                                        6.9
## 2751                                                                                                        6.9
## 2752                                                                                                        6.9
## 2753                                                                                                        6.9
## 2754                                                                                                        6.9
## 2755                                                                                                        6.9
## 2756                                                                                                        6.9
## 2757                                                                                                        6.9
## 2758                                                                                                        6.9
## 2759                                                                                                        6.9
## 2760                                                                                                        6.9
## 2761                                                                                                        6.9
## 2762                                                                                                        6.9
## 2763                                                                                                        6.9
## 2764                                                                                                        6.9
## 2765                                                                                                        6.9
## 2766                                                                                                        6.9
## 2767                                                                                                        6.9
## 2768                                                                                                        6.9
## 2769                                                                                                          7
## 2770                                                                                                          7
## 2771                                                                                                          7
## 2772                                                                                                          7
## 2773                                                                                                          7
## 2774                                                                                                          7
## 2775                                                                                                          7
## 2776                                                                                                          7
## 2777                                                                                                          7
## 2778                                                                                                          7
## 2779                                                                                                          7
## 2780                                                                                                          7
## 2781                                                                                                          7
## 2782                                                                                                          7
## 2783                                                                                                          7
## 2784                                                                                                          7
## 2785                                                                                                          7
## 2786                                                                                                          7
## 2787                                                                                                          7
## 2788                                                                                                        7.1
## 2789                                                                                                        7.1
## 2790                                                                                                        7.1
## 2791                                                                                                        7.1
## 2792                                                                                                        7.1
## 2793                                                                                                        7.1
## 2794                                                                                                        7.1
## 2795                                                                                                        7.1
## 2796                                                                                                        7.1
## 2797                                                                                                        7.1
## 2798                                                                                                        7.1
## 2799                                                                                                        7.1
## 2800                                                                                                        7.1
## 2801                                                                                                        7.1
## 2802                                                                                                        7.1
## 2803                                                                                                        7.1
## 2804                                                                                                        7.1
## 2805                                                                                                        7.1
## 2806                                                                                                        7.1
## 2807                                                                                                        7.1
## 2808                                                                                                        7.1
## 2809                                                                                                        7.1
## 2810                                                                                                        7.1
## 2811                                                                                                        7.1
## 2812                                                                                                        7.1
## 2813                                                                                                        7.1
## 2814                                                                                                        7.1
## 2815                                                                                                        7.1
## 2816                                                                                                        7.2
## 2817                                                                                                        7.2
## 2818                                                                                                        7.2
## 2819                                                                                                        7.2
## 2820                                                                                                        7.2
## 2821                                                                                                        7.2
## 2822                                                                                                        7.2
## 2823                                                                                                        7.2
## 2824                                                                                                        7.2
## 2825                                                                                                        7.2
## 2826                                                                                                        7.2
## 2827                                                                                                        7.2
## 2828                                                                                                        7.2
## 2829                                                                                                        7.2
## 2830                                                                                                        7.2
## 2831                                                                                                        7.2
## 2832                                                                                                        7.2
## 2833                                                                                                        7.2
## 2834                                                                                                        7.2
## 2835                                                                                                        7.2
## 2836                                                                                                        7.3
## 2837                                                                                                        7.3
## 2838                                                                                                        7.3
## 2839                                                                                                        7.3
## 2840                                                                                                        7.3
## 2841                                                                                                        7.3
## 2842                                                                                                        7.3
## 2843                                                                                                        7.3
## 2844                                                                                                        7.3
## 2845                                                                                                        7.3
## 2846                                                                                                        7.3
## 2847                                                                                                        7.3
## 2848                                                                                                        7.3
## 2849                                                                                                        7.3
## 2850                                                                                                        7.3
## 2851                                                                                                        7.3
## 2852                                                                                                        7.3
## 2853                                                                                                        7.3
## 2854                                                                                                        7.3
## 2855                                                                                                        7.3
## 2856                                                                                                        7.3
## 2857                                                                                                        7.4
## 2858                                                                                                        7.4
## 2859                                                                                                        7.4
## 2860                                                                                                        7.4
## 2861                                                                                                        7.4
## 2862                                                                                                        7.4
## 2863                                                                                                        7.4
## 2864                                                                                                        7.4
## 2865                                                                                                        7.4
## 2866                                                                                                        7.4
## 2867                                                                                                        7.4
## 2868                                                                                                        7.4
## 2869                                                                                                        7.5
## 2870                                                                                                        7.5
## 2871                                                                                                        7.5
## 2872                                                                                                        7.5
## 2873                                                                                                        7.5
## 2874                                                                                                        7.5
## 2875                                                                                                        7.5
## 2876                                                                                                        7.5
## 2877                                                                                                        7.5
## 2878                                                                                                        7.5
## 2879                                                                                                        7.6
## 2880                                                                                                        7.6
## 2881                                                                                                        7.6
## 2882                                                                                                        7.6
## 2883                                                                                                        7.6
## 2884                                                                                                        7.6
## 2885                                                                                                        7.6
## 2886                                                                                                        7.6
## 2887                                                                                                        7.6
## 2888                                                                                                        7.6
## 2889                                                                                                        7.7
## 2890                                                                                                        7.7
## 2891                                                                                                        7.7
## 2892                                                                                                        7.7
## 2893                                                                                                        7.7
## 2894                                                                                                        7.7
## 2895                                                                                                        7.7
## 2896                                                                                                        7.7
## 2897                                                                                                        7.8
## 2898                                                                                                        7.8
## 2899                                                                                                        7.8
## 2900                                                                                                        7.9
## 2901                                                                                                        7.9
## 2902                                                                                                        7.9
## 2903                                                                                                        7.9
## 2904                                                                                                          8
## 2905                                                                                                        8.1
## 2906                                                                                                        8.1
## 2907                                                                                                        8.1
## 2908                                                                                                        8.2
## 2909                                                                                                        8.2
## 2910                                                                                                        8.2
## 2911                                                                                                        8.2
## 2912                                                                                                        8.2
## 2913                                                                                                        8.3
## 2914                                                                                                        8.3
## 2915                                                                                                        8.4
## 2916                                                                                                        8.4
## 2917                                                                                                        8.4
## 2918                                                                                                        8.5
## 2919                                                                                                        8.6
## 2920                                                                                                          9
## 2921                                                                                           English/Japanese
## 2922                                                                                                    Spanish
## 2923                                                                                                    Italian
## 2924                                                                                                    English
## 2925                                                                                                      Hindi
## 2926                                                                                                      Hindi
## 2927                                                                                                    Turkish
## 2928                                                                                                    English
## 2929                                                                                                    English
## 2930                                                                                                      Hindi
## 2931                                                                                                    English
## 2932                                                                                                     Korean
## 2933                                                                                                 Indonesian
## 2934                                                                                                      Malay
## 2935                                                                                                    English
## 2936                                                                                                    Spanish
## 2937                                                                                                      Hindi
## 2938                                                                                                    English
## 2939                                                                                                     Korean
## 2940                                                                                                    English
## 2941                                                                                                    English
## 2942                                                                                                    English
## 2943                                                                                                    English
## 2944                                                                                                      Hindi
## 2945                                                                                                    English
## 2946                                                                                                    English
## 2947                                                                                                      Dutch
## 2948                                                                                                    English
## 2949                                                                                                     French
## 2950                                                                                                    Italian
## 2951                                                                                            English/Spanish
## 2952                                                                                                    English
## 2953                                                                                                     French
## 2954                                                                                                 Portuguese
## 2955                                                                                                    English
## 2956                                                                                                    Italian
## 2957                                                                                                     French
## 2958                                                                                                   Filipino
## 2959                                                                                                    English
## 2960                                                                                                     French
## 2961                                                                                                    English
## 2962                                                                                                    Italian
## 2963                                                                                                    English
## 2964                                                                                                     German
## 2965                                                                                                    English
## 2966                                                                                                      Hindi
## 2967                                                                                                     Polish
## 2968                                                                                                    English
## 2969                                                                                                    English
## 2970                                                                                                    English
## 2971                                                                                                     French
## 2972                                                                                                    English
## 2973                                                                                                    English
## 2974                                                                                                    Spanish
## 2975                                                                                                 Portuguese
## 2976                                                                                                    English
## 2977                                                                                                 Indonesian
## 2978                                                                                                    English
## 2979                                                                                                     Polish
## 2980                                                                                                  Norwegian
## 2981                                                                                                    English
## 2982                                                                                                    English
## 2983                                                                                                    English
## 2984                                                                                                 Indonesian
## 2985                                                                                                    English
## 2986                                                                                                    English
## 2987                                                                                                    English
## 2988                                                                                                    English
## 2989                                                                                                    English
## 2990                                                                                                    English
## 2991                                                                                                    Marathi
## 2992                                                                                                       Thai
## 2993                                                                                                    English
## 2994                                                                                                    English
## 2995                                                                                                    English
## 2996                                                                                                    English
## 2997                                                                                                    English
## 2998                                                                                                    English
## 2999                                                                                                    English
## 3000                                                                                                    English
## 3001                                                                                                    English
## 3002                                                                                                    English
## 3003                                                                                                    Italian
## 3004                                                                                                    English
## 3005                                                                                                    English
## 3006                                                                                                     French
## 3007                                                                                                    English
## 3008                                                                                                      Hindi
## 3009                                                                                                    Spanish
## 3010                                                                                                     French
## 3011                                                                                                    English
## 3012                                                                                                     French
## 3013                                                                                                    Spanish
## 3014                                                                                                    English
## 3015                                                                                                    English
## 3016                                                                                                    English
## 3017                                                                                                    Spanish
## 3018                                                                                                      Hindi
## 3019                                                                                                     German
## 3020                                                                                                    English
## 3021                                                                                                      Hindi
## 3022                                                                                                    English
## 3023                                                                                                     French
## 3024                                                                                                    English
## 3025                                                                                                    English
## 3026                                                                                                    English
## 3027                                                                                                    Italian
## 3028                                                                                                    English
## 3029                                                                                                    English
## 3030                                                                                                   Filipino
## 3031                                                                                                 Portuguese
## 3032                                                                                                    English
## 3033                                                                                                      Hindi
## 3034                                                                                                    English
## 3035                                                                                                    English
## 3036                                                                                                    English
## 3037                                                                                                    English
## 3038                                                                                                    Swedish
## 3039                                                                                                   Japanese
## 3040                                                                                                    English
## 3041                                                                                                    English
## 3042                                                                                                    English
## 3043                                                                                                    English
## 3044                                                                                                    English
## 3045                                                                                                    English
## 3046                                                                                                    English
## 3047                                                                                             Spanish/Basque
## 3048                                                                                                    English
## 3049                                                                                                 Portuguese
## 3050                                                                                                    English
## 3051                                                                                                    English
## 3052                                                                                                    English
## 3053                                                                                                    Turkish
## 3054                                                                                                    English
## 3055                                                                                                    English
## 3056                                                                                                    Italian
## 3057                                                                                                    English
## 3058                                                                                                    Spanish
## 3059                                                                                                    English
## 3060                                                                                                    English
## 3061                                                                                                    English
## 3062                                                                                                    English
## 3063                                                                                                    Italian
## 3064                                                                                                    English
## 3065                                                                                                    Spanish
## 3066                                                                                                    English
## 3067                                                                                                    English
## 3068                                                                                                      Hindi
## 3069                                                                                                    English
## 3070                                                                                                    English
## 3071                                                                                                    English
## 3072                                                                                                       Thai
## 3073                                                                                                    English
## 3074                                                                                                    English
## 3075                                                                                                     Polish
## 3076                                                                                                    English
## 3077                                                                                                    English
## 3078                                                                                                    English
## 3079                                                                                                    English
## 3080                                                                                                    English
## 3081                                                                                                    English
## 3082                                                                                                    Marathi
## 3083                                                                                                    English
## 3084                                                                                                    English
## 3085                                                                                                    English
## 3086                                                                                                    English
## 3087                                                                                                    English
## 3088                                                                                                    English
## 3089                                                                                                      Hindi
## 3090                                                                                                      Hindi
## 3091                                                                                                    English
## 3092                                                                                                    English
## 3093                                                                                                    English
## 3094                                                                                                    English
## 3095                                                                                                    English
## 3096                                                                                                    English
## 3097                                                                                                      Hindi
## 3098                                                                                                 Portuguese
## 3099                                                                                                     German
## 3100                                                                                                    English
## 3101                                                                                                    English
## 3102                                                                                                    English
## 3103                                                                                                    English
## 3104                                                                                                    English
## 3105                                                                                                    English
## 3106                                                                                                    English
## 3107                                                                                                      Dutch
## 3108                                                                                                    English
## 3109                                                                                                    English
## 3110                                                                                                     German
## 3111                                                                                                    Spanish
## 3112                                                                                                    English
## 3113                                                                                                    English
## 3114                                                                                                    English
## 3115                                                                                                    English
## 3116                                                                                                    English
## 3117                                                                                                    English
## 3118                                                                                                    English
## 3119                                                                                                    English
## 3120                                                                                                    English
## 3121                                                                                                      Hindi
## 3122                                                                                                     French
## 3123                                                                                                    English
## 3124                                                                                                    English
## 3125                                                                                                    English
## 3126                                                                                                    English
## 3127                                                                                                    Italian
## 3128                                                                                                    English
## 3129                                                                                                    Italian
## 3130                                                                                                    English
## 3131                                                                                                      Hindi
## 3132                                                                                                    English
## 3133                                                                                                    English
## 3134                                                                                                    English
## 3135                                                                                                    English
## 3136                                                                                                    English
## 3137                                                                                                    English
## 3138                                                                                                    English
## 3139                                                                                                    English
## 3140                                                                                                    English
## 3141                                                                                                    English
## 3142                                                                                                    English
## 3143                                                                                                    English
## 3144                                                                                                    English
## 3145                                                                                                    English
## 3146                                                                                                    English
## 3147                                                                                                    English
## 3148                                                                                                    English
## 3149                                                                                                    English
## 3150                                                                                                    English
## 3151                                                                                                    English
## 3152                                                                                                    English
## 3153                                                                                                    English
## 3154                                                                                                     French
## 3155                                                                                                    English
## 3156                                                                                                    Turkish
## 3157                                                                                                 Indonesian
## 3158                                                                                                 Portuguese
## 3159                                                                                                    English
## 3160                                                                                                    English
## 3161                                                                                                    English
## 3162                                                                                                      Hindi
## 3163                                                                                                    Spanish
## 3164                                                                                                    English
## 3165                                                                                                    English
## 3166                                                                                                    Italian
## 3167                                                                                                    Spanish
## 3168                                                                                                    English
## 3169                                                                                                 Indonesian
## 3170                                                                                                    Turkish
## 3171                                                                                                    English
## 3172                                                                                                    English
## 3173                                                                                                     French
## 3174                                                                                                    English
## 3175                                                                                                    Spanish
## 3176                                                                                                    English
## 3177                                                                                                    English
## 3178                                                                                                    English
## 3179                                                                                                    English
## 3180                                                                                                    English
## 3181                                                                                                    English
## 3182                                                                                                    English
## 3183                                                                                                    English
## 3184                                                                                            English/Spanish
## 3185                                                                                                    English
## 3186                                                                                                    English
## 3187                                                                                                    English
## 3188                                                                                                    English
## 3189                                                                                                    English
## 3190                                                                                                    English
## 3191                                                                                                    English
## 3192                                                                                                 Portuguese
## 3193                                                                                                     French
## 3194                                                                                                 Indonesian
## 3195                                                                                                      Hindi
## 3196                                                                                                    English
## 3197                                                                                                    Spanish
## 3198                                                                                                    English
## 3199                                                                                                 Portuguese
## 3200                                                                                                    English
## 3201                                                                                                    English
## 3202                                                                                                    English
## 3203                                                                                                    English
## 3204                                                                                                    English
## 3205                                                                                                   Japanese
## 3206                                                                                                    English
## 3207                                                                                                    English
## 3208                                                                                           English/Japanese
## 3209                                                                                                     Korean
## 3210                                                                                                    English
## 3211                                                                                                    English
## 3212                                                                                                    English
## 3213                                                                                                     French
## 3214                                                                                                    English
## 3215                                                                                                    English
## 3216                                                                                            English/Spanish
## 3217                                                                                                    Spanish
## 3218                                                                                                    English
## 3219                                                                                                    English
## 3220                                                                                                    English
## 3221                                                                                                     German
## 3222                                                                                                    English
## 3223                                                                                                 Indonesian
## 3224                                                                                                    English
## 3225                                                                                                    English
## 3226                                                                                                    English
## 3227                                                                                                    English
## 3228                                                                                                     French
## 3229                                                                                                    English
## 3230                                                                                                    English
## 3231                                                                                                    English
## 3232                                                                                                 Indonesian
## 3233                                                                                                    English
## 3234                                                                                                    Spanish
## 3235                                                                                                    English
## 3236                                                                                                    English
## 3237                                                                                            Spanish/Catalan
## 3238                                                                                                    English
## 3239                                                                                                    English
## 3240                                                                                                    English
## 3241                                                                                            English/Spanish
## 3242                                                                                                    English
## 3243                                                                                                    English
## 3244                                                                                                   Japanese
## 3245                                                                                                     French
## 3246                                                                                                    English
## 3247                                                                                                    English
## 3248                                                                                                      Hindi
## 3249                                                                                                    English
## 3250                                                                                                    English
## 3251                                                                                                    English
## 3252                                                                                                    English
## 3253                                                                                                    English
## 3254                                                                                                    English
## 3255                                                                                            English/Swedish
## 3256                                                                                                      Hindi
## 3257                                                                                                    English
## 3258                                                                                                    English
## 3259                                                                                                    Spanish
## 3260                                                                                                    English
## 3261                                                                                                     French
## 3262                                                                                                    English
## 3263                                                                                                    English
## 3264                                                                                 English/Taiwanese/Mandarin
## 3265                                                                                                    English
## 3266                                                                                                    English
## 3267                                                                                                    English
## 3268                                                                                                    English
## 3269                                                                                                      Hindi
## 3270                                                                                                    Spanish
## 3271                                                                                                    Spanish
## 3272                                                                                                    English
## 3273                                                                                                    English
## 3274                                                                                                    English
## 3275                                                                                                      Hindi
## 3276                                                                                                    English
## 3277                                                                                                    English
## 3278                                                                                                    English
## 3279                                                                                                     Korean
## 3280                                                                                                    English
## 3281                                                                                                    English
## 3282                                                                                                    Spanish
## 3283                                                                                                    English
## 3284                                                                                                    English
## 3285                                                                                                   Japanese
## 3286                                                                                                      Hindi
## 3287                                                                                                    English
## 3288                                                                                                    English
## 3289                                                                                                   Japanese
## 3290                                                                                                    English
## 3291                                                                                                    English
## 3292                                                                                                    English
## 3293                                                                                                    English
## 3294                                                                                                    English
## 3295                                                                                                    English
## 3296                                                                                               Thia/English
## 3297                                                                                                    English
## 3298                                                                                                 Portuguese
## 3299                                                                                                   Japanese
## 3300                                                                                                    English
## 3301                                                                                                    English
## 3302                                                                                                    English
## 3303                                                                                                     Korean
## 3304                                                                                                    Turkish
## 3305                                                                                                    Spanish
## 3306                                                                                                    English
## 3307                                                                                                    English
## 3308                                                                                                    English
## 3309                                                                                                      Hindi
## 3310                                                                                                    English
## 3311                                                                                                    Spanish
## 3312                                                                                                    English
## 3313                                                                                                    Spanish
## 3314                                                                                                    English
## 3315                                                                                           English/Mandarin
## 3316                                                                                                    English
## 3317                                                                                                    English
## 3318                                                                                                      Hindi
## 3319                                                                                                    English
## 3320                                                                                                    English
## 3321                                                                                                     French
## 3322                                                                                                    English
## 3323                                                                                                    English
## 3324                                                                                                    English
## 3325                                                                                                    English
## 3326                                                                                                      Hindi
## 3327                                                                                                    English
## 3328                                                                                                    English
## 3329                                                                                                    Italian
## 3330                                                                                                    English
## 3331                                                                                                   Georgian
## 3332                                                                                                    English
## 3333                                                                                                     French
## 3334                                                                                                      Hindi
## 3335                                                                                                    English
## 3336                                                                                                     French
## 3337                                                                                                    English
## 3338                                                                                                    English
## 3339                                                                                                    English
## 3340                                                                                                 Portuguese
## 3341                                                                                                    English
## 3342                                                                                                    English
## 3343                                                                                                    English
## 3344                                                                                                      Hindi
## 3345                                                                                                    English
## 3346                                                                                                    English
## 3347                                                                                                    English
## 3348                                                                                                    English
## 3349                                                                                                    English
## 3350                                                                                                    English
## 3351                                                                                                    English
## 3352                                                                                                    English
## 3353                                                                                                    English
## 3354                                                                                                    English
## 3355                                                                                                    English
## 3356                                                                                                    English
## 3357                                                                                                    Spanish
## 3358                                                                                                    Spanish
## 3359                                                                                                    English
## 3360                                                                                                    English
## 3361                                                                                                    English
## 3362                                                                                                    English
## 3363                                                                                                    English
## 3364                                                                                                    English
## 3365                                                                                                    English
## 3366                                                                                                    English
## 3367                                                                                                    English
## 3368                                                                                                    Italian
## 3369                                                                                                    English
## 3370                                                                                                    English
## 3371                                                                                                 Indonesian
## 3372                                                                                                    English
## 3373                                                                                                    English
## 3374                                                                                                    English
## 3375                                                                                                    English
## 3376                                                                                                    English
## 3377                                                                                                    English
## 3378                                                                                                    English
## 3379                                                                                                    Spanish
## 3380                                                                                                    English
## 3381                                                                                                    English
## 3382                                                                                                      Dutch
## 3383                                                                                                    English
## 3384                                                                                                    Spanish
## 3385                                                                                                    English
## 3386                                                                                                    English
## 3387                                                                                                    English
## 3388                                                                                                    English
## 3389                                                                                                    English
## 3390                                                                                                    English
## 3391                                                                                                    English
## 3392                                                                                                    English
## 3393                                                                                                    English
## 3394                                                                                                    Bengali
## 3395                                                                                                    English
## 3396                                                                                                    English
## 3397                                                                                                    English
## 3398                                                                                                    English
## 3399                                                                                                    English
## 3400                                                                                                    English
## 3401                                                                                                    English
## 3402                                                                                       Khmer/English/French
## 3403                                                                                                    English
## 3404                                                                                                    English
## 3405                                                                                                    English
## 3406                                                                                              English/Hindi
## 3407                                                                                                      Hindi
## 3408                                                                                                    English
## 3409                                                                                                    English
## 3410                                                                                                    Spanish
## 3411                                                                                                      Tamil
## 3412                                                                                                      Hindi
## 3413                                                                                                    English
## 3414                                                                                                    Marathi
## 3415                                                                                                 Portuguese
## 3416                                                                                                    English
## 3417                                                                                                    English
## 3418                                                                                                    English
## 3419                                                                                                    English
## 3420                                                                                                    English
## 3421                                                                                                    English
## 3422                                                                                                    English
## 3423                                                                                                    English
## 3424                                                                                                    English
## 3425                                                                                                    Spanish
## 3426                                                                                            Spanish/English
## 3427                                                                                                    English
## 3428                                                                                             English/Korean
## 3429                                                                                                    Italian
## 3430                                                                                                      Hindi
## 3431                                                                                            English/Spanish
## 3432                                                                                                    English
## 3433                                                                                             English/Arabic
## 3434                                                                                                    English
## 3435                                                                                           English/Mandarin
## 3436                                                                                            English/Russian
## 3437                                                                                                    English
## 3438                                                                                                    English
## 3439                                                                                                    English
## 3440                                                                                                    English
## 3441                                                                                                    English
## 3442                                                                                                    English
## 3443                                                                                                    English
## 3444                                                                                                    English
## 3445                                                                                              English/Hindi
## 3446                                                                                                    English
## 3447                                                                                                    English
## 3448                                                                                                    English
## 3449                                                                                                    English
## 3450                                                                                                    English
## 3451                                                                                                    English
## 3452                                                                                                    English
## 3453                                                                                                    English
## 3454                                                                                                     Korean
## 3455                                                                                                    English
## 3456                                                                                                    English
## 3457                                                                                                    English
## 3458                                                                                                    English
## 3459                                                                                                    English
## 3460                                                                                                    English
## 3461                                                                                                    English
## 3462                                                                                                    English
## 3463                                                                                                    English
## 3464                                                                                                      Hindi
## 3465                                                                                                    English
## 3466                                                                                                    English
## 3467                                                                                                    English
## 3468                                                                                                    English
## 3469                                                                                                    English
## 3470                                                                                                    English
## 3471                                                                                                    English
## 3472                                                                                                      Hindi
## 3473                                                                                                    English
## 3474                                                                                               English/Akan
## 3475                                                                                                    English
## 3476                                                                                                    English
## 3477                                                                                                    English
## 3478                                                                                                    English
## 3479                                                                                                    Spanish
## 3480                                                                                                    Spanish
## 3481                                                                                                    English
## 3482                                                                                                    English
## 3483                                                                                                    English
## 3484                                                                                                    English
## 3485                                                                                                    English
## 3486                                                                                                    English
## 3487                                                                                                    English
## 3488                                                                                                    English
## 3489                                                                                                    English
## 3490                                                                                                    English
## 3491                                                                                                    English
## 3492                                                                                                    English
## 3493                                                                                                    English
## 3494                                                                                                    English
## 3495                                                                                                    English
## 3496                                                                                                    Spanish
## 3497                                                                                                    English
## 3498                                                                                                    English
## 3499                                                                                                    English
## 3500                                                                                                    English
## 3501                                                                                   English/Ukranian/Russian
## 3502                                                                                                    English
## 3503                                                                                                 Portuguese
## 3504                                                                                                    English
##             ind
## 1         Title
## 2         Title
## 3         Title
## 4         Title
## 5         Title
## 6         Title
## 7         Title
## 8         Title
## 9         Title
## 10        Title
## 11        Title
## 12        Title
## 13        Title
## 14        Title
## 15        Title
## 16        Title
## 17        Title
## 18        Title
## 19        Title
## 20        Title
## 21        Title
## 22        Title
## 23        Title
## 24        Title
## 25        Title
## 26        Title
## 27        Title
## 28        Title
## 29        Title
## 30        Title
## 31        Title
## 32        Title
## 33        Title
## 34        Title
## 35        Title
## 36        Title
## 37        Title
## 38        Title
## 39        Title
## 40        Title
## 41        Title
## 42        Title
## 43        Title
## 44        Title
## 45        Title
## 46        Title
## 47        Title
## 48        Title
## 49        Title
## 50        Title
## 51        Title
## 52        Title
## 53        Title
## 54        Title
## 55        Title
## 56        Title
## 57        Title
## 58        Title
## 59        Title
## 60        Title
## 61        Title
## 62        Title
## 63        Title
## 64        Title
## 65        Title
## 66        Title
## 67        Title
## 68        Title
## 69        Title
## 70        Title
## 71        Title
## 72        Title
## 73        Title
## 74        Title
## 75        Title
## 76        Title
## 77        Title
## 78        Title
## 79        Title
## 80        Title
## 81        Title
## 82        Title
## 83        Title
## 84        Title
## 85        Title
## 86        Title
## 87        Title
## 88        Title
## 89        Title
## 90        Title
## 91        Title
## 92        Title
## 93        Title
## 94        Title
## 95        Title
## 96        Title
## 97        Title
## 98        Title
## 99        Title
## 100       Title
## 101       Title
## 102       Title
## 103       Title
## 104       Title
## 105       Title
## 106       Title
## 107       Title
## 108       Title
## 109       Title
## 110       Title
## 111       Title
## 112       Title
## 113       Title
## 114       Title
## 115       Title
## 116       Title
## 117       Title
## 118       Title
## 119       Title
## 120       Title
## 121       Title
## 122       Title
## 123       Title
## 124       Title
## 125       Title
## 126       Title
## 127       Title
## 128       Title
## 129       Title
## 130       Title
## 131       Title
## 132       Title
## 133       Title
## 134       Title
## 135       Title
## 136       Title
## 137       Title
## 138       Title
## 139       Title
## 140       Title
## 141       Title
## 142       Title
## 143       Title
## 144       Title
## 145       Title
## 146       Title
## 147       Title
## 148       Title
## 149       Title
## 150       Title
## 151       Title
## 152       Title
## 153       Title
## 154       Title
## 155       Title
## 156       Title
## 157       Title
## 158       Title
## 159       Title
## 160       Title
## 161       Title
## 162       Title
## 163       Title
## 164       Title
## 165       Title
## 166       Title
## 167       Title
## 168       Title
## 169       Title
## 170       Title
## 171       Title
## 172       Title
## 173       Title
## 174       Title
## 175       Title
## 176       Title
## 177       Title
## 178       Title
## 179       Title
## 180       Title
## 181       Title
## 182       Title
## 183       Title
## 184       Title
## 185       Title
## 186       Title
## 187       Title
## 188       Title
## 189       Title
## 190       Title
## 191       Title
## 192       Title
## 193       Title
## 194       Title
## 195       Title
## 196       Title
## 197       Title
## 198       Title
## 199       Title
## 200       Title
## 201       Title
## 202       Title
## 203       Title
## 204       Title
## 205       Title
## 206       Title
## 207       Title
## 208       Title
## 209       Title
## 210       Title
## 211       Title
## 212       Title
## 213       Title
## 214       Title
## 215       Title
## 216       Title
## 217       Title
## 218       Title
## 219       Title
## 220       Title
## 221       Title
## 222       Title
## 223       Title
## 224       Title
## 225       Title
## 226       Title
## 227       Title
## 228       Title
## 229       Title
## 230       Title
## 231       Title
## 232       Title
## 233       Title
## 234       Title
## 235       Title
## 236       Title
## 237       Title
## 238       Title
## 239       Title
## 240       Title
## 241       Title
## 242       Title
## 243       Title
## 244       Title
## 245       Title
## 246       Title
## 247       Title
## 248       Title
## 249       Title
## 250       Title
## 251       Title
## 252       Title
## 253       Title
## 254       Title
## 255       Title
## 256       Title
## 257       Title
## 258       Title
## 259       Title
## 260       Title
## 261       Title
## 262       Title
## 263       Title
## 264       Title
## 265       Title
## 266       Title
## 267       Title
## 268       Title
## 269       Title
## 270       Title
## 271       Title
## 272       Title
## 273       Title
## 274       Title
## 275       Title
## 276       Title
## 277       Title
## 278       Title
## 279       Title
## 280       Title
## 281       Title
## 282       Title
## 283       Title
## 284       Title
## 285       Title
## 286       Title
## 287       Title
## 288       Title
## 289       Title
## 290       Title
## 291       Title
## 292       Title
## 293       Title
## 294       Title
## 295       Title
## 296       Title
## 297       Title
## 298       Title
## 299       Title
## 300       Title
## 301       Title
## 302       Title
## 303       Title
## 304       Title
## 305       Title
## 306       Title
## 307       Title
## 308       Title
## 309       Title
## 310       Title
## 311       Title
## 312       Title
## 313       Title
## 314       Title
## 315       Title
## 316       Title
## 317       Title
## 318       Title
## 319       Title
## 320       Title
## 321       Title
## 322       Title
## 323       Title
## 324       Title
## 325       Title
## 326       Title
## 327       Title
## 328       Title
## 329       Title
## 330       Title
## 331       Title
## 332       Title
## 333       Title
## 334       Title
## 335       Title
## 336       Title
## 337       Title
## 338       Title
## 339       Title
## 340       Title
## 341       Title
## 342       Title
## 343       Title
## 344       Title
## 345       Title
## 346       Title
## 347       Title
## 348       Title
## 349       Title
## 350       Title
## 351       Title
## 352       Title
## 353       Title
## 354       Title
## 355       Title
## 356       Title
## 357       Title
## 358       Title
## 359       Title
## 360       Title
## 361       Title
## 362       Title
## 363       Title
## 364       Title
## 365       Title
## 366       Title
## 367       Title
## 368       Title
## 369       Title
## 370       Title
## 371       Title
## 372       Title
## 373       Title
## 374       Title
## 375       Title
## 376       Title
## 377       Title
## 378       Title
## 379       Title
## 380       Title
## 381       Title
## 382       Title
## 383       Title
## 384       Title
## 385       Title
## 386       Title
## 387       Title
## 388       Title
## 389       Title
## 390       Title
## 391       Title
## 392       Title
## 393       Title
## 394       Title
## 395       Title
## 396       Title
## 397       Title
## 398       Title
## 399       Title
## 400       Title
## 401       Title
## 402       Title
## 403       Title
## 404       Title
## 405       Title
## 406       Title
## 407       Title
## 408       Title
## 409       Title
## 410       Title
## 411       Title
## 412       Title
## 413       Title
## 414       Title
## 415       Title
## 416       Title
## 417       Title
## 418       Title
## 419       Title
## 420       Title
## 421       Title
## 422       Title
## 423       Title
## 424       Title
## 425       Title
## 426       Title
## 427       Title
## 428       Title
## 429       Title
## 430       Title
## 431       Title
## 432       Title
## 433       Title
## 434       Title
## 435       Title
## 436       Title
## 437       Title
## 438       Title
## 439       Title
## 440       Title
## 441       Title
## 442       Title
## 443       Title
## 444       Title
## 445       Title
## 446       Title
## 447       Title
## 448       Title
## 449       Title
## 450       Title
## 451       Title
## 452       Title
## 453       Title
## 454       Title
## 455       Title
## 456       Title
## 457       Title
## 458       Title
## 459       Title
## 460       Title
## 461       Title
## 462       Title
## 463       Title
## 464       Title
## 465       Title
## 466       Title
## 467       Title
## 468       Title
## 469       Title
## 470       Title
## 471       Title
## 472       Title
## 473       Title
## 474       Title
## 475       Title
## 476       Title
## 477       Title
## 478       Title
## 479       Title
## 480       Title
## 481       Title
## 482       Title
## 483       Title
## 484       Title
## 485       Title
## 486       Title
## 487       Title
## 488       Title
## 489       Title
## 490       Title
## 491       Title
## 492       Title
## 493       Title
## 494       Title
## 495       Title
## 496       Title
## 497       Title
## 498       Title
## 499       Title
## 500       Title
## 501       Title
## 502       Title
## 503       Title
## 504       Title
## 505       Title
## 506       Title
## 507       Title
## 508       Title
## 509       Title
## 510       Title
## 511       Title
## 512       Title
## 513       Title
## 514       Title
## 515       Title
## 516       Title
## 517       Title
## 518       Title
## 519       Title
## 520       Title
## 521       Title
## 522       Title
## 523       Title
## 524       Title
## 525       Title
## 526       Title
## 527       Title
## 528       Title
## 529       Title
## 530       Title
## 531       Title
## 532       Title
## 533       Title
## 534       Title
## 535       Title
## 536       Title
## 537       Title
## 538       Title
## 539       Title
## 540       Title
## 541       Title
## 542       Title
## 543       Title
## 544       Title
## 545       Title
## 546       Title
## 547       Title
## 548       Title
## 549       Title
## 550       Title
## 551       Title
## 552       Title
## 553       Title
## 554       Title
## 555       Title
## 556       Title
## 557       Title
## 558       Title
## 559       Title
## 560       Title
## 561       Title
## 562       Title
## 563       Title
## 564       Title
## 565       Title
## 566       Title
## 567       Title
## 568       Title
## 569       Title
## 570       Title
## 571       Title
## 572       Title
## 573       Title
## 574       Title
## 575       Title
## 576       Title
## 577       Title
## 578       Title
## 579       Title
## 580       Title
## 581       Title
## 582       Title
## 583       Title
## 584       Title
## 585       Genre
## 586       Genre
## 587       Genre
## 588       Genre
## 589       Genre
## 590       Genre
## 591       Genre
## 592       Genre
## 593       Genre
## 594       Genre
## 595       Genre
## 596       Genre
## 597       Genre
## 598       Genre
## 599       Genre
## 600       Genre
## 601       Genre
## 602       Genre
## 603       Genre
## 604       Genre
## 605       Genre
## 606       Genre
## 607       Genre
## 608       Genre
## 609       Genre
## 610       Genre
## 611       Genre
## 612       Genre
## 613       Genre
## 614       Genre
## 615       Genre
## 616       Genre
## 617       Genre
## 618       Genre
## 619       Genre
## 620       Genre
## 621       Genre
## 622       Genre
## 623       Genre
## 624       Genre
## 625       Genre
## 626       Genre
## 627       Genre
## 628       Genre
## 629       Genre
## 630       Genre
## 631       Genre
## 632       Genre
## 633       Genre
## 634       Genre
## 635       Genre
## 636       Genre
## 637       Genre
## 638       Genre
## 639       Genre
## 640       Genre
## 641       Genre
## 642       Genre
## 643       Genre
## 644       Genre
## 645       Genre
## 646       Genre
## 647       Genre
## 648       Genre
## 649       Genre
## 650       Genre
## 651       Genre
## 652       Genre
## 653       Genre
## 654       Genre
## 655       Genre
## 656       Genre
## 657       Genre
## 658       Genre
## 659       Genre
## 660       Genre
## 661       Genre
## 662       Genre
## 663       Genre
## 664       Genre
## 665       Genre
## 666       Genre
## 667       Genre
## 668       Genre
## 669       Genre
## 670       Genre
## 671       Genre
## 672       Genre
## 673       Genre
## 674       Genre
## 675       Genre
## 676       Genre
## 677       Genre
## 678       Genre
## 679       Genre
## 680       Genre
## 681       Genre
## 682       Genre
## 683       Genre
## 684       Genre
## 685       Genre
## 686       Genre
## 687       Genre
## 688       Genre
## 689       Genre
## 690       Genre
## 691       Genre
## 692       Genre
## 693       Genre
## 694       Genre
## 695       Genre
## 696       Genre
## 697       Genre
## 698       Genre
## 699       Genre
## 700       Genre
## 701       Genre
## 702       Genre
## 703       Genre
## 704       Genre
## 705       Genre
## 706       Genre
## 707       Genre
## 708       Genre
## 709       Genre
## 710       Genre
## 711       Genre
## 712       Genre
## 713       Genre
## 714       Genre
## 715       Genre
## 716       Genre
## 717       Genre
## 718       Genre
## 719       Genre
## 720       Genre
## 721       Genre
## 722       Genre
## 723       Genre
## 724       Genre
## 725       Genre
## 726       Genre
## 727       Genre
## 728       Genre
## 729       Genre
## 730       Genre
## 731       Genre
## 732       Genre
## 733       Genre
## 734       Genre
## 735       Genre
## 736       Genre
## 737       Genre
## 738       Genre
## 739       Genre
## 740       Genre
## 741       Genre
## 742       Genre
## 743       Genre
## 744       Genre
## 745       Genre
## 746       Genre
## 747       Genre
## 748       Genre
## 749       Genre
## 750       Genre
## 751       Genre
## 752       Genre
## 753       Genre
## 754       Genre
## 755       Genre
## 756       Genre
## 757       Genre
## 758       Genre
## 759       Genre
## 760       Genre
## 761       Genre
## 762       Genre
## 763       Genre
## 764       Genre
## 765       Genre
## 766       Genre
## 767       Genre
## 768       Genre
## 769       Genre
## 770       Genre
## 771       Genre
## 772       Genre
## 773       Genre
## 774       Genre
## 775       Genre
## 776       Genre
## 777       Genre
## 778       Genre
## 779       Genre
## 780       Genre
## 781       Genre
## 782       Genre
## 783       Genre
## 784       Genre
## 785       Genre
## 786       Genre
## 787       Genre
## 788       Genre
## 789       Genre
## 790       Genre
## 791       Genre
## 792       Genre
## 793       Genre
## 794       Genre
## 795       Genre
## 796       Genre
## 797       Genre
## 798       Genre
## 799       Genre
## 800       Genre
## 801       Genre
## 802       Genre
## 803       Genre
## 804       Genre
## 805       Genre
## 806       Genre
## 807       Genre
## 808       Genre
## 809       Genre
## 810       Genre
## 811       Genre
## 812       Genre
## 813       Genre
## 814       Genre
## 815       Genre
## 816       Genre
## 817       Genre
## 818       Genre
## 819       Genre
## 820       Genre
## 821       Genre
## 822       Genre
## 823       Genre
## 824       Genre
## 825       Genre
## 826       Genre
## 827       Genre
## 828       Genre
## 829       Genre
## 830       Genre
## 831       Genre
## 832       Genre
## 833       Genre
## 834       Genre
## 835       Genre
## 836       Genre
## 837       Genre
## 838       Genre
## 839       Genre
## 840       Genre
## 841       Genre
## 842       Genre
## 843       Genre
## 844       Genre
## 845       Genre
## 846       Genre
## 847       Genre
## 848       Genre
## 849       Genre
## 850       Genre
## 851       Genre
## 852       Genre
## 853       Genre
## 854       Genre
## 855       Genre
## 856       Genre
## 857       Genre
## 858       Genre
## 859       Genre
## 860       Genre
## 861       Genre
## 862       Genre
## 863       Genre
## 864       Genre
## 865       Genre
## 866       Genre
## 867       Genre
## 868       Genre
## 869       Genre
## 870       Genre
## 871       Genre
## 872       Genre
## 873       Genre
## 874       Genre
## 875       Genre
## 876       Genre
## 877       Genre
## 878       Genre
## 879       Genre
## 880       Genre
## 881       Genre
## 882       Genre
## 883       Genre
## 884       Genre
## 885       Genre
## 886       Genre
## 887       Genre
## 888       Genre
## 889       Genre
## 890       Genre
## 891       Genre
## 892       Genre
## 893       Genre
## 894       Genre
## 895       Genre
## 896       Genre
## 897       Genre
## 898       Genre
## 899       Genre
## 900       Genre
## 901       Genre
## 902       Genre
## 903       Genre
## 904       Genre
## 905       Genre
## 906       Genre
## 907       Genre
## 908       Genre
## 909       Genre
## 910       Genre
## 911       Genre
## 912       Genre
## 913       Genre
## 914       Genre
## 915       Genre
## 916       Genre
## 917       Genre
## 918       Genre
## 919       Genre
## 920       Genre
## 921       Genre
## 922       Genre
## 923       Genre
## 924       Genre
## 925       Genre
## 926       Genre
## 927       Genre
## 928       Genre
## 929       Genre
## 930       Genre
## 931       Genre
## 932       Genre
## 933       Genre
## 934       Genre
## 935       Genre
## 936       Genre
## 937       Genre
## 938       Genre
## 939       Genre
## 940       Genre
## 941       Genre
## 942       Genre
## 943       Genre
## 944       Genre
## 945       Genre
## 946       Genre
## 947       Genre
## 948       Genre
## 949       Genre
## 950       Genre
## 951       Genre
## 952       Genre
## 953       Genre
## 954       Genre
## 955       Genre
## 956       Genre
## 957       Genre
## 958       Genre
## 959       Genre
## 960       Genre
## 961       Genre
## 962       Genre
## 963       Genre
## 964       Genre
## 965       Genre
## 966       Genre
## 967       Genre
## 968       Genre
## 969       Genre
## 970       Genre
## 971       Genre
## 972       Genre
## 973       Genre
## 974       Genre
## 975       Genre
## 976       Genre
## 977       Genre
## 978       Genre
## 979       Genre
## 980       Genre
## 981       Genre
## 982       Genre
## 983       Genre
## 984       Genre
## 985       Genre
## 986       Genre
## 987       Genre
## 988       Genre
## 989       Genre
## 990       Genre
## 991       Genre
## 992       Genre
## 993       Genre
## 994       Genre
## 995       Genre
## 996       Genre
## 997       Genre
## 998       Genre
## 999       Genre
## 1000      Genre
## 1001      Genre
## 1002      Genre
## 1003      Genre
## 1004      Genre
## 1005      Genre
## 1006      Genre
## 1007      Genre
## 1008      Genre
## 1009      Genre
## 1010      Genre
## 1011      Genre
## 1012      Genre
## 1013      Genre
## 1014      Genre
## 1015      Genre
## 1016      Genre
## 1017      Genre
## 1018      Genre
## 1019      Genre
## 1020      Genre
## 1021      Genre
## 1022      Genre
## 1023      Genre
## 1024      Genre
## 1025      Genre
## 1026      Genre
## 1027      Genre
## 1028      Genre
## 1029      Genre
## 1030      Genre
## 1031      Genre
## 1032      Genre
## 1033      Genre
## 1034      Genre
## 1035      Genre
## 1036      Genre
## 1037      Genre
## 1038      Genre
## 1039      Genre
## 1040      Genre
## 1041      Genre
## 1042      Genre
## 1043      Genre
## 1044      Genre
## 1045      Genre
## 1046      Genre
## 1047      Genre
## 1048      Genre
## 1049      Genre
## 1050      Genre
## 1051      Genre
## 1052      Genre
## 1053      Genre
## 1054      Genre
## 1055      Genre
## 1056      Genre
## 1057      Genre
## 1058      Genre
## 1059      Genre
## 1060      Genre
## 1061      Genre
## 1062      Genre
## 1063      Genre
## 1064      Genre
## 1065      Genre
## 1066      Genre
## 1067      Genre
## 1068      Genre
## 1069      Genre
## 1070      Genre
## 1071      Genre
## 1072      Genre
## 1073      Genre
## 1074      Genre
## 1075      Genre
## 1076      Genre
## 1077      Genre
## 1078      Genre
## 1079      Genre
## 1080      Genre
## 1081      Genre
## 1082      Genre
## 1083      Genre
## 1084      Genre
## 1085      Genre
## 1086      Genre
## 1087      Genre
## 1088      Genre
## 1089      Genre
## 1090      Genre
## 1091      Genre
## 1092      Genre
## 1093      Genre
## 1094      Genre
## 1095      Genre
## 1096      Genre
## 1097      Genre
## 1098      Genre
## 1099      Genre
## 1100      Genre
## 1101      Genre
## 1102      Genre
## 1103      Genre
## 1104      Genre
## 1105      Genre
## 1106      Genre
## 1107      Genre
## 1108      Genre
## 1109      Genre
## 1110      Genre
## 1111      Genre
## 1112      Genre
## 1113      Genre
## 1114      Genre
## 1115      Genre
## 1116      Genre
## 1117      Genre
## 1118      Genre
## 1119      Genre
## 1120      Genre
## 1121      Genre
## 1122      Genre
## 1123      Genre
## 1124      Genre
## 1125      Genre
## 1126      Genre
## 1127      Genre
## 1128      Genre
## 1129      Genre
## 1130      Genre
## 1131      Genre
## 1132      Genre
## 1133      Genre
## 1134      Genre
## 1135      Genre
## 1136      Genre
## 1137      Genre
## 1138      Genre
## 1139      Genre
## 1140      Genre
## 1141      Genre
## 1142      Genre
## 1143      Genre
## 1144      Genre
## 1145      Genre
## 1146      Genre
## 1147      Genre
## 1148      Genre
## 1149      Genre
## 1150      Genre
## 1151      Genre
## 1152      Genre
## 1153      Genre
## 1154      Genre
## 1155      Genre
## 1156      Genre
## 1157      Genre
## 1158      Genre
## 1159      Genre
## 1160      Genre
## 1161      Genre
## 1162      Genre
## 1163      Genre
## 1164      Genre
## 1165      Genre
## 1166      Genre
## 1167      Genre
## 1168      Genre
## 1169   Premiere
## 1170   Premiere
## 1171   Premiere
## 1172   Premiere
## 1173   Premiere
## 1174   Premiere
## 1175   Premiere
## 1176   Premiere
## 1177   Premiere
## 1178   Premiere
## 1179   Premiere
## 1180   Premiere
## 1181   Premiere
## 1182   Premiere
## 1183   Premiere
## 1184   Premiere
## 1185   Premiere
## 1186   Premiere
## 1187   Premiere
## 1188   Premiere
## 1189   Premiere
## 1190   Premiere
## 1191   Premiere
## 1192   Premiere
## 1193   Premiere
## 1194   Premiere
## 1195   Premiere
## 1196   Premiere
## 1197   Premiere
## 1198   Premiere
## 1199   Premiere
## 1200   Premiere
## 1201   Premiere
## 1202   Premiere
## 1203   Premiere
## 1204   Premiere
## 1205   Premiere
## 1206   Premiere
## 1207   Premiere
## 1208   Premiere
## 1209   Premiere
## 1210   Premiere
## 1211   Premiere
## 1212   Premiere
## 1213   Premiere
## 1214   Premiere
## 1215   Premiere
## 1216   Premiere
## 1217   Premiere
## 1218   Premiere
## 1219   Premiere
## 1220   Premiere
## 1221   Premiere
## 1222   Premiere
## 1223   Premiere
## 1224   Premiere
## 1225   Premiere
## 1226   Premiere
## 1227   Premiere
## 1228   Premiere
## 1229   Premiere
## 1230   Premiere
## 1231   Premiere
## 1232   Premiere
## 1233   Premiere
## 1234   Premiere
## 1235   Premiere
## 1236   Premiere
## 1237   Premiere
## 1238   Premiere
## 1239   Premiere
## 1240   Premiere
## 1241   Premiere
## 1242   Premiere
## 1243   Premiere
## 1244   Premiere
## 1245   Premiere
## 1246   Premiere
## 1247   Premiere
## 1248   Premiere
## 1249   Premiere
## 1250   Premiere
## 1251   Premiere
## 1252   Premiere
## 1253   Premiere
## 1254   Premiere
## 1255   Premiere
## 1256   Premiere
## 1257   Premiere
## 1258   Premiere
## 1259   Premiere
## 1260   Premiere
## 1261   Premiere
## 1262   Premiere
## 1263   Premiere
## 1264   Premiere
## 1265   Premiere
## 1266   Premiere
## 1267   Premiere
## 1268   Premiere
## 1269   Premiere
## 1270   Premiere
## 1271   Premiere
## 1272   Premiere
## 1273   Premiere
## 1274   Premiere
## 1275   Premiere
## 1276   Premiere
## 1277   Premiere
## 1278   Premiere
## 1279   Premiere
## 1280   Premiere
## 1281   Premiere
## 1282   Premiere
## 1283   Premiere
## 1284   Premiere
## 1285   Premiere
## 1286   Premiere
## 1287   Premiere
## 1288   Premiere
## 1289   Premiere
## 1290   Premiere
## 1291   Premiere
## 1292   Premiere
## 1293   Premiere
## 1294   Premiere
## 1295   Premiere
## 1296   Premiere
## 1297   Premiere
## 1298   Premiere
## 1299   Premiere
## 1300   Premiere
## 1301   Premiere
## 1302   Premiere
## 1303   Premiere
## 1304   Premiere
## 1305   Premiere
## 1306   Premiere
## 1307   Premiere
## 1308   Premiere
## 1309   Premiere
## 1310   Premiere
## 1311   Premiere
## 1312   Premiere
## 1313   Premiere
## 1314   Premiere
## 1315   Premiere
## 1316   Premiere
## 1317   Premiere
## 1318   Premiere
## 1319   Premiere
## 1320   Premiere
## 1321   Premiere
## 1322   Premiere
## 1323   Premiere
## 1324   Premiere
## 1325   Premiere
## 1326   Premiere
## 1327   Premiere
## 1328   Premiere
## 1329   Premiere
## 1330   Premiere
## 1331   Premiere
## 1332   Premiere
## 1333   Premiere
## 1334   Premiere
## 1335   Premiere
## 1336   Premiere
## 1337   Premiere
## 1338   Premiere
## 1339   Premiere
## 1340   Premiere
## 1341   Premiere
## 1342   Premiere
## 1343   Premiere
## 1344   Premiere
## 1345   Premiere
## 1346   Premiere
## 1347   Premiere
## 1348   Premiere
## 1349   Premiere
## 1350   Premiere
## 1351   Premiere
## 1352   Premiere
## 1353   Premiere
## 1354   Premiere
## 1355   Premiere
## 1356   Premiere
## 1357   Premiere
## 1358   Premiere
## 1359   Premiere
## 1360   Premiere
## 1361   Premiere
## 1362   Premiere
## 1363   Premiere
## 1364   Premiere
## 1365   Premiere
## 1366   Premiere
## 1367   Premiere
## 1368   Premiere
## 1369   Premiere
## 1370   Premiere
## 1371   Premiere
## 1372   Premiere
## 1373   Premiere
## 1374   Premiere
## 1375   Premiere
## 1376   Premiere
## 1377   Premiere
## 1378   Premiere
## 1379   Premiere
## 1380   Premiere
## 1381   Premiere
## 1382   Premiere
## 1383   Premiere
## 1384   Premiere
## 1385   Premiere
## 1386   Premiere
## 1387   Premiere
## 1388   Premiere
## 1389   Premiere
## 1390   Premiere
## 1391   Premiere
## 1392   Premiere
## 1393   Premiere
## 1394   Premiere
## 1395   Premiere
## 1396   Premiere
## 1397   Premiere
## 1398   Premiere
## 1399   Premiere
## 1400   Premiere
## 1401   Premiere
## 1402   Premiere
## 1403   Premiere
## 1404   Premiere
## 1405   Premiere
## 1406   Premiere
## 1407   Premiere
## 1408   Premiere
## 1409   Premiere
## 1410   Premiere
## 1411   Premiere
## 1412   Premiere
## 1413   Premiere
## 1414   Premiere
## 1415   Premiere
## 1416   Premiere
## 1417   Premiere
## 1418   Premiere
## 1419   Premiere
## 1420   Premiere
## 1421   Premiere
## 1422   Premiere
## 1423   Premiere
## 1424   Premiere
## 1425   Premiere
## 1426   Premiere
## 1427   Premiere
## 1428   Premiere
## 1429   Premiere
## 1430   Premiere
## 1431   Premiere
## 1432   Premiere
## 1433   Premiere
## 1434   Premiere
## 1435   Premiere
## 1436   Premiere
## 1437   Premiere
## 1438   Premiere
## 1439   Premiere
## 1440   Premiere
## 1441   Premiere
## 1442   Premiere
## 1443   Premiere
## 1444   Premiere
## 1445   Premiere
## 1446   Premiere
## 1447   Premiere
## 1448   Premiere
## 1449   Premiere
## 1450   Premiere
## 1451   Premiere
## 1452   Premiere
## 1453   Premiere
## 1454   Premiere
## 1455   Premiere
## 1456   Premiere
## 1457   Premiere
## 1458   Premiere
## 1459   Premiere
## 1460   Premiere
## 1461   Premiere
## 1462   Premiere
## 1463   Premiere
## 1464   Premiere
## 1465   Premiere
## 1466   Premiere
## 1467   Premiere
## 1468   Premiere
## 1469   Premiere
## 1470   Premiere
## 1471   Premiere
## 1472   Premiere
## 1473   Premiere
## 1474   Premiere
## 1475   Premiere
## 1476   Premiere
## 1477   Premiere
## 1478   Premiere
## 1479   Premiere
## 1480   Premiere
## 1481   Premiere
## 1482   Premiere
## 1483   Premiere
## 1484   Premiere
## 1485   Premiere
## 1486   Premiere
## 1487   Premiere
## 1488   Premiere
## 1489   Premiere
## 1490   Premiere
## 1491   Premiere
## 1492   Premiere
## 1493   Premiere
## 1494   Premiere
## 1495   Premiere
## 1496   Premiere
## 1497   Premiere
## 1498   Premiere
## 1499   Premiere
## 1500   Premiere
## 1501   Premiere
## 1502   Premiere
## 1503   Premiere
## 1504   Premiere
## 1505   Premiere
## 1506   Premiere
## 1507   Premiere
## 1508   Premiere
## 1509   Premiere
## 1510   Premiere
## 1511   Premiere
## 1512   Premiere
## 1513   Premiere
## 1514   Premiere
## 1515   Premiere
## 1516   Premiere
## 1517   Premiere
## 1518   Premiere
## 1519   Premiere
## 1520   Premiere
## 1521   Premiere
## 1522   Premiere
## 1523   Premiere
## 1524   Premiere
## 1525   Premiere
## 1526   Premiere
## 1527   Premiere
## 1528   Premiere
## 1529   Premiere
## 1530   Premiere
## 1531   Premiere
## 1532   Premiere
## 1533   Premiere
## 1534   Premiere
## 1535   Premiere
## 1536   Premiere
## 1537   Premiere
## 1538   Premiere
## 1539   Premiere
## 1540   Premiere
## 1541   Premiere
## 1542   Premiere
## 1543   Premiere
## 1544   Premiere
## 1545   Premiere
## 1546   Premiere
## 1547   Premiere
## 1548   Premiere
## 1549   Premiere
## 1550   Premiere
## 1551   Premiere
## 1552   Premiere
## 1553   Premiere
## 1554   Premiere
## 1555   Premiere
## 1556   Premiere
## 1557   Premiere
## 1558   Premiere
## 1559   Premiere
## 1560   Premiere
## 1561   Premiere
## 1562   Premiere
## 1563   Premiere
## 1564   Premiere
## 1565   Premiere
## 1566   Premiere
## 1567   Premiere
## 1568   Premiere
## 1569   Premiere
## 1570   Premiere
## 1571   Premiere
## 1572   Premiere
## 1573   Premiere
## 1574   Premiere
## 1575   Premiere
## 1576   Premiere
## 1577   Premiere
## 1578   Premiere
## 1579   Premiere
## 1580   Premiere
## 1581   Premiere
## 1582   Premiere
## 1583   Premiere
## 1584   Premiere
## 1585   Premiere
## 1586   Premiere
## 1587   Premiere
## 1588   Premiere
## 1589   Premiere
## 1590   Premiere
## 1591   Premiere
## 1592   Premiere
## 1593   Premiere
## 1594   Premiere
## 1595   Premiere
## 1596   Premiere
## 1597   Premiere
## 1598   Premiere
## 1599   Premiere
## 1600   Premiere
## 1601   Premiere
## 1602   Premiere
## 1603   Premiere
## 1604   Premiere
## 1605   Premiere
## 1606   Premiere
## 1607   Premiere
## 1608   Premiere
## 1609   Premiere
## 1610   Premiere
## 1611   Premiere
## 1612   Premiere
## 1613   Premiere
## 1614   Premiere
## 1615   Premiere
## 1616   Premiere
## 1617   Premiere
## 1618   Premiere
## 1619   Premiere
## 1620   Premiere
## 1621   Premiere
## 1622   Premiere
## 1623   Premiere
## 1624   Premiere
## 1625   Premiere
## 1626   Premiere
## 1627   Premiere
## 1628   Premiere
## 1629   Premiere
## 1630   Premiere
## 1631   Premiere
## 1632   Premiere
## 1633   Premiere
## 1634   Premiere
## 1635   Premiere
## 1636   Premiere
## 1637   Premiere
## 1638   Premiere
## 1639   Premiere
## 1640   Premiere
## 1641   Premiere
## 1642   Premiere
## 1643   Premiere
## 1644   Premiere
## 1645   Premiere
## 1646   Premiere
## 1647   Premiere
## 1648   Premiere
## 1649   Premiere
## 1650   Premiere
## 1651   Premiere
## 1652   Premiere
## 1653   Premiere
## 1654   Premiere
## 1655   Premiere
## 1656   Premiere
## 1657   Premiere
## 1658   Premiere
## 1659   Premiere
## 1660   Premiere
## 1661   Premiere
## 1662   Premiere
## 1663   Premiere
## 1664   Premiere
## 1665   Premiere
## 1666   Premiere
## 1667   Premiere
## 1668   Premiere
## 1669   Premiere
## 1670   Premiere
## 1671   Premiere
## 1672   Premiere
## 1673   Premiere
## 1674   Premiere
## 1675   Premiere
## 1676   Premiere
## 1677   Premiere
## 1678   Premiere
## 1679   Premiere
## 1680   Premiere
## 1681   Premiere
## 1682   Premiere
## 1683   Premiere
## 1684   Premiere
## 1685   Premiere
## 1686   Premiere
## 1687   Premiere
## 1688   Premiere
## 1689   Premiere
## 1690   Premiere
## 1691   Premiere
## 1692   Premiere
## 1693   Premiere
## 1694   Premiere
## 1695   Premiere
## 1696   Premiere
## 1697   Premiere
## 1698   Premiere
## 1699   Premiere
## 1700   Premiere
## 1701   Premiere
## 1702   Premiere
## 1703   Premiere
## 1704   Premiere
## 1705   Premiere
## 1706   Premiere
## 1707   Premiere
## 1708   Premiere
## 1709   Premiere
## 1710   Premiere
## 1711   Premiere
## 1712   Premiere
## 1713   Premiere
## 1714   Premiere
## 1715   Premiere
## 1716   Premiere
## 1717   Premiere
## 1718   Premiere
## 1719   Premiere
## 1720   Premiere
## 1721   Premiere
## 1722   Premiere
## 1723   Premiere
## 1724   Premiere
## 1725   Premiere
## 1726   Premiere
## 1727   Premiere
## 1728   Premiere
## 1729   Premiere
## 1730   Premiere
## 1731   Premiere
## 1732   Premiere
## 1733   Premiere
## 1734   Premiere
## 1735   Premiere
## 1736   Premiere
## 1737   Premiere
## 1738   Premiere
## 1739   Premiere
## 1740   Premiere
## 1741   Premiere
## 1742   Premiere
## 1743   Premiere
## 1744   Premiere
## 1745   Premiere
## 1746   Premiere
## 1747   Premiere
## 1748   Premiere
## 1749   Premiere
## 1750   Premiere
## 1751   Premiere
## 1752   Premiere
## 1753    Runtime
## 1754    Runtime
## 1755    Runtime
## 1756    Runtime
## 1757    Runtime
## 1758    Runtime
## 1759    Runtime
## 1760    Runtime
## 1761    Runtime
## 1762    Runtime
## 1763    Runtime
## 1764    Runtime
## 1765    Runtime
## 1766    Runtime
## 1767    Runtime
## 1768    Runtime
## 1769    Runtime
## 1770    Runtime
## 1771    Runtime
## 1772    Runtime
## 1773    Runtime
## 1774    Runtime
## 1775    Runtime
## 1776    Runtime
## 1777    Runtime
## 1778    Runtime
## 1779    Runtime
## 1780    Runtime
## 1781    Runtime
## 1782    Runtime
## 1783    Runtime
## 1784    Runtime
## 1785    Runtime
## 1786    Runtime
## 1787    Runtime
## 1788    Runtime
## 1789    Runtime
## 1790    Runtime
## 1791    Runtime
## 1792    Runtime
## 1793    Runtime
## 1794    Runtime
## 1795    Runtime
## 1796    Runtime
## 1797    Runtime
## 1798    Runtime
## 1799    Runtime
## 1800    Runtime
## 1801    Runtime
## 1802    Runtime
## 1803    Runtime
## 1804    Runtime
## 1805    Runtime
## 1806    Runtime
## 1807    Runtime
## 1808    Runtime
## 1809    Runtime
## 1810    Runtime
## 1811    Runtime
## 1812    Runtime
## 1813    Runtime
## 1814    Runtime
## 1815    Runtime
## 1816    Runtime
## 1817    Runtime
## 1818    Runtime
## 1819    Runtime
## 1820    Runtime
## 1821    Runtime
## 1822    Runtime
## 1823    Runtime
## 1824    Runtime
## 1825    Runtime
## 1826    Runtime
## 1827    Runtime
## 1828    Runtime
## 1829    Runtime
## 1830    Runtime
## 1831    Runtime
## 1832    Runtime
## 1833    Runtime
## 1834    Runtime
## 1835    Runtime
## 1836    Runtime
## 1837    Runtime
## 1838    Runtime
## 1839    Runtime
## 1840    Runtime
## 1841    Runtime
## 1842    Runtime
## 1843    Runtime
## 1844    Runtime
## 1845    Runtime
## 1846    Runtime
## 1847    Runtime
## 1848    Runtime
## 1849    Runtime
## 1850    Runtime
## 1851    Runtime
## 1852    Runtime
## 1853    Runtime
## 1854    Runtime
## 1855    Runtime
## 1856    Runtime
## 1857    Runtime
## 1858    Runtime
## 1859    Runtime
## 1860    Runtime
## 1861    Runtime
## 1862    Runtime
## 1863    Runtime
## 1864    Runtime
## 1865    Runtime
## 1866    Runtime
## 1867    Runtime
## 1868    Runtime
## 1869    Runtime
## 1870    Runtime
## 1871    Runtime
## 1872    Runtime
## 1873    Runtime
## 1874    Runtime
## 1875    Runtime
## 1876    Runtime
## 1877    Runtime
## 1878    Runtime
## 1879    Runtime
## 1880    Runtime
## 1881    Runtime
## 1882    Runtime
## 1883    Runtime
## 1884    Runtime
## 1885    Runtime
## 1886    Runtime
## 1887    Runtime
## 1888    Runtime
## 1889    Runtime
## 1890    Runtime
## 1891    Runtime
## 1892    Runtime
## 1893    Runtime
## 1894    Runtime
## 1895    Runtime
## 1896    Runtime
## 1897    Runtime
## 1898    Runtime
## 1899    Runtime
## 1900    Runtime
## 1901    Runtime
## 1902    Runtime
## 1903    Runtime
## 1904    Runtime
## 1905    Runtime
## 1906    Runtime
## 1907    Runtime
## 1908    Runtime
## 1909    Runtime
## 1910    Runtime
## 1911    Runtime
## 1912    Runtime
## 1913    Runtime
## 1914    Runtime
## 1915    Runtime
## 1916    Runtime
## 1917    Runtime
## 1918    Runtime
## 1919    Runtime
## 1920    Runtime
## 1921    Runtime
## 1922    Runtime
## 1923    Runtime
## 1924    Runtime
## 1925    Runtime
## 1926    Runtime
## 1927    Runtime
## 1928    Runtime
## 1929    Runtime
## 1930    Runtime
## 1931    Runtime
## 1932    Runtime
## 1933    Runtime
## 1934    Runtime
## 1935    Runtime
## 1936    Runtime
## 1937    Runtime
## 1938    Runtime
## 1939    Runtime
## 1940    Runtime
## 1941    Runtime
## 1942    Runtime
## 1943    Runtime
## 1944    Runtime
## 1945    Runtime
## 1946    Runtime
## 1947    Runtime
## 1948    Runtime
## 1949    Runtime
## 1950    Runtime
## 1951    Runtime
## 1952    Runtime
## 1953    Runtime
## 1954    Runtime
## 1955    Runtime
## 1956    Runtime
## 1957    Runtime
## 1958    Runtime
## 1959    Runtime
## 1960    Runtime
## 1961    Runtime
## 1962    Runtime
## 1963    Runtime
## 1964    Runtime
## 1965    Runtime
## 1966    Runtime
## 1967    Runtime
## 1968    Runtime
## 1969    Runtime
## 1970    Runtime
## 1971    Runtime
## 1972    Runtime
## 1973    Runtime
## 1974    Runtime
## 1975    Runtime
## 1976    Runtime
## 1977    Runtime
## 1978    Runtime
## 1979    Runtime
## 1980    Runtime
## 1981    Runtime
## 1982    Runtime
## 1983    Runtime
## 1984    Runtime
## 1985    Runtime
## 1986    Runtime
## 1987    Runtime
## 1988    Runtime
## 1989    Runtime
## 1990    Runtime
## 1991    Runtime
## 1992    Runtime
## 1993    Runtime
## 1994    Runtime
## 1995    Runtime
## 1996    Runtime
## 1997    Runtime
## 1998    Runtime
## 1999    Runtime
## 2000    Runtime
## 2001    Runtime
## 2002    Runtime
## 2003    Runtime
## 2004    Runtime
## 2005    Runtime
## 2006    Runtime
## 2007    Runtime
## 2008    Runtime
## 2009    Runtime
## 2010    Runtime
## 2011    Runtime
## 2012    Runtime
## 2013    Runtime
## 2014    Runtime
## 2015    Runtime
## 2016    Runtime
## 2017    Runtime
## 2018    Runtime
## 2019    Runtime
## 2020    Runtime
## 2021    Runtime
## 2022    Runtime
## 2023    Runtime
## 2024    Runtime
## 2025    Runtime
## 2026    Runtime
## 2027    Runtime
## 2028    Runtime
## 2029    Runtime
## 2030    Runtime
## 2031    Runtime
## 2032    Runtime
## 2033    Runtime
## 2034    Runtime
## 2035    Runtime
## 2036    Runtime
## 2037    Runtime
## 2038    Runtime
## 2039    Runtime
## 2040    Runtime
## 2041    Runtime
## 2042    Runtime
## 2043    Runtime
## 2044    Runtime
## 2045    Runtime
## 2046    Runtime
## 2047    Runtime
## 2048    Runtime
## 2049    Runtime
## 2050    Runtime
## 2051    Runtime
## 2052    Runtime
## 2053    Runtime
## 2054    Runtime
## 2055    Runtime
## 2056    Runtime
## 2057    Runtime
## 2058    Runtime
## 2059    Runtime
## 2060    Runtime
## 2061    Runtime
## 2062    Runtime
## 2063    Runtime
## 2064    Runtime
## 2065    Runtime
## 2066    Runtime
## 2067    Runtime
## 2068    Runtime
## 2069    Runtime
## 2070    Runtime
## 2071    Runtime
## 2072    Runtime
## 2073    Runtime
## 2074    Runtime
## 2075    Runtime
## 2076    Runtime
## 2077    Runtime
## 2078    Runtime
## 2079    Runtime
## 2080    Runtime
## 2081    Runtime
## 2082    Runtime
## 2083    Runtime
## 2084    Runtime
## 2085    Runtime
## 2086    Runtime
## 2087    Runtime
## 2088    Runtime
## 2089    Runtime
## 2090    Runtime
## 2091    Runtime
## 2092    Runtime
## 2093    Runtime
## 2094    Runtime
## 2095    Runtime
## 2096    Runtime
## 2097    Runtime
## 2098    Runtime
## 2099    Runtime
## 2100    Runtime
## 2101    Runtime
## 2102    Runtime
## 2103    Runtime
## 2104    Runtime
## 2105    Runtime
## 2106    Runtime
## 2107    Runtime
## 2108    Runtime
## 2109    Runtime
## 2110    Runtime
## 2111    Runtime
## 2112    Runtime
## 2113    Runtime
## 2114    Runtime
## 2115    Runtime
## 2116    Runtime
## 2117    Runtime
## 2118    Runtime
## 2119    Runtime
## 2120    Runtime
## 2121    Runtime
## 2122    Runtime
## 2123    Runtime
## 2124    Runtime
## 2125    Runtime
## 2126    Runtime
## 2127    Runtime
## 2128    Runtime
## 2129    Runtime
## 2130    Runtime
## 2131    Runtime
## 2132    Runtime
## 2133    Runtime
## 2134    Runtime
## 2135    Runtime
## 2136    Runtime
## 2137    Runtime
## 2138    Runtime
## 2139    Runtime
## 2140    Runtime
## 2141    Runtime
## 2142    Runtime
## 2143    Runtime
## 2144    Runtime
## 2145    Runtime
## 2146    Runtime
## 2147    Runtime
## 2148    Runtime
## 2149    Runtime
## 2150    Runtime
## 2151    Runtime
## 2152    Runtime
## 2153    Runtime
## 2154    Runtime
## 2155    Runtime
## 2156    Runtime
## 2157    Runtime
## 2158    Runtime
## 2159    Runtime
## 2160    Runtime
## 2161    Runtime
## 2162    Runtime
## 2163    Runtime
## 2164    Runtime
## 2165    Runtime
## 2166    Runtime
## 2167    Runtime
## 2168    Runtime
## 2169    Runtime
## 2170    Runtime
## 2171    Runtime
## 2172    Runtime
## 2173    Runtime
## 2174    Runtime
## 2175    Runtime
## 2176    Runtime
## 2177    Runtime
## 2178    Runtime
## 2179    Runtime
## 2180    Runtime
## 2181    Runtime
## 2182    Runtime
## 2183    Runtime
## 2184    Runtime
## 2185    Runtime
## 2186    Runtime
## 2187    Runtime
## 2188    Runtime
## 2189    Runtime
## 2190    Runtime
## 2191    Runtime
## 2192    Runtime
## 2193    Runtime
## 2194    Runtime
## 2195    Runtime
## 2196    Runtime
## 2197    Runtime
## 2198    Runtime
## 2199    Runtime
## 2200    Runtime
## 2201    Runtime
## 2202    Runtime
## 2203    Runtime
## 2204    Runtime
## 2205    Runtime
## 2206    Runtime
## 2207    Runtime
## 2208    Runtime
## 2209    Runtime
## 2210    Runtime
## 2211    Runtime
## 2212    Runtime
## 2213    Runtime
## 2214    Runtime
## 2215    Runtime
## 2216    Runtime
## 2217    Runtime
## 2218    Runtime
## 2219    Runtime
## 2220    Runtime
## 2221    Runtime
## 2222    Runtime
## 2223    Runtime
## 2224    Runtime
## 2225    Runtime
## 2226    Runtime
## 2227    Runtime
## 2228    Runtime
## 2229    Runtime
## 2230    Runtime
## 2231    Runtime
## 2232    Runtime
## 2233    Runtime
## 2234    Runtime
## 2235    Runtime
## 2236    Runtime
## 2237    Runtime
## 2238    Runtime
## 2239    Runtime
## 2240    Runtime
## 2241    Runtime
## 2242    Runtime
## 2243    Runtime
## 2244    Runtime
## 2245    Runtime
## 2246    Runtime
## 2247    Runtime
## 2248    Runtime
## 2249    Runtime
## 2250    Runtime
## 2251    Runtime
## 2252    Runtime
## 2253    Runtime
## 2254    Runtime
## 2255    Runtime
## 2256    Runtime
## 2257    Runtime
## 2258    Runtime
## 2259    Runtime
## 2260    Runtime
## 2261    Runtime
## 2262    Runtime
## 2263    Runtime
## 2264    Runtime
## 2265    Runtime
## 2266    Runtime
## 2267    Runtime
## 2268    Runtime
## 2269    Runtime
## 2270    Runtime
## 2271    Runtime
## 2272    Runtime
## 2273    Runtime
## 2274    Runtime
## 2275    Runtime
## 2276    Runtime
## 2277    Runtime
## 2278    Runtime
## 2279    Runtime
## 2280    Runtime
## 2281    Runtime
## 2282    Runtime
## 2283    Runtime
## 2284    Runtime
## 2285    Runtime
## 2286    Runtime
## 2287    Runtime
## 2288    Runtime
## 2289    Runtime
## 2290    Runtime
## 2291    Runtime
## 2292    Runtime
## 2293    Runtime
## 2294    Runtime
## 2295    Runtime
## 2296    Runtime
## 2297    Runtime
## 2298    Runtime
## 2299    Runtime
## 2300    Runtime
## 2301    Runtime
## 2302    Runtime
## 2303    Runtime
## 2304    Runtime
## 2305    Runtime
## 2306    Runtime
## 2307    Runtime
## 2308    Runtime
## 2309    Runtime
## 2310    Runtime
## 2311    Runtime
## 2312    Runtime
## 2313    Runtime
## 2314    Runtime
## 2315    Runtime
## 2316    Runtime
## 2317    Runtime
## 2318    Runtime
## 2319    Runtime
## 2320    Runtime
## 2321    Runtime
## 2322    Runtime
## 2323    Runtime
## 2324    Runtime
## 2325    Runtime
## 2326    Runtime
## 2327    Runtime
## 2328    Runtime
## 2329    Runtime
## 2330    Runtime
## 2331    Runtime
## 2332    Runtime
## 2333    Runtime
## 2334    Runtime
## 2335    Runtime
## 2336    Runtime
## 2337 IMDB.Score
## 2338 IMDB.Score
## 2339 IMDB.Score
## 2340 IMDB.Score
## 2341 IMDB.Score
## 2342 IMDB.Score
## 2343 IMDB.Score
## 2344 IMDB.Score
## 2345 IMDB.Score
## 2346 IMDB.Score
## 2347 IMDB.Score
## 2348 IMDB.Score
## 2349 IMDB.Score
## 2350 IMDB.Score
## 2351 IMDB.Score
## 2352 IMDB.Score
## 2353 IMDB.Score
## 2354 IMDB.Score
## 2355 IMDB.Score
## 2356 IMDB.Score
## 2357 IMDB.Score
## 2358 IMDB.Score
## 2359 IMDB.Score
## 2360 IMDB.Score
## 2361 IMDB.Score
## 2362 IMDB.Score
## 2363 IMDB.Score
## 2364 IMDB.Score
## 2365 IMDB.Score
## 2366 IMDB.Score
## 2367 IMDB.Score
## 2368 IMDB.Score
## 2369 IMDB.Score
## 2370 IMDB.Score
## 2371 IMDB.Score
## 2372 IMDB.Score
## 2373 IMDB.Score
## 2374 IMDB.Score
## 2375 IMDB.Score
## 2376 IMDB.Score
## 2377 IMDB.Score
## 2378 IMDB.Score
## 2379 IMDB.Score
## 2380 IMDB.Score
## 2381 IMDB.Score
## 2382 IMDB.Score
## 2383 IMDB.Score
## 2384 IMDB.Score
## 2385 IMDB.Score
## 2386 IMDB.Score
## 2387 IMDB.Score
## 2388 IMDB.Score
## 2389 IMDB.Score
## 2390 IMDB.Score
## 2391 IMDB.Score
## 2392 IMDB.Score
## 2393 IMDB.Score
## 2394 IMDB.Score
## 2395 IMDB.Score
## 2396 IMDB.Score
## 2397 IMDB.Score
## 2398 IMDB.Score
## 2399 IMDB.Score
## 2400 IMDB.Score
## 2401 IMDB.Score
## 2402 IMDB.Score
## 2403 IMDB.Score
## 2404 IMDB.Score
## 2405 IMDB.Score
## 2406 IMDB.Score
## 2407 IMDB.Score
## 2408 IMDB.Score
## 2409 IMDB.Score
## 2410 IMDB.Score
## 2411 IMDB.Score
## 2412 IMDB.Score
## 2413 IMDB.Score
## 2414 IMDB.Score
## 2415 IMDB.Score
## 2416 IMDB.Score
## 2417 IMDB.Score
## 2418 IMDB.Score
## 2419 IMDB.Score
## 2420 IMDB.Score
## 2421 IMDB.Score
## 2422 IMDB.Score
## 2423 IMDB.Score
## 2424 IMDB.Score
## 2425 IMDB.Score
## 2426 IMDB.Score
## 2427 IMDB.Score
## 2428 IMDB.Score
## 2429 IMDB.Score
## 2430 IMDB.Score
## 2431 IMDB.Score
## 2432 IMDB.Score
## 2433 IMDB.Score
## 2434 IMDB.Score
## 2435 IMDB.Score
## 2436 IMDB.Score
## 2437 IMDB.Score
## 2438 IMDB.Score
## 2439 IMDB.Score
## 2440 IMDB.Score
## 2441 IMDB.Score
## 2442 IMDB.Score
## 2443 IMDB.Score
## 2444 IMDB.Score
## 2445 IMDB.Score
## 2446 IMDB.Score
## 2447 IMDB.Score
## 2448 IMDB.Score
## 2449 IMDB.Score
## 2450 IMDB.Score
## 2451 IMDB.Score
## 2452 IMDB.Score
## 2453 IMDB.Score
## 2454 IMDB.Score
## 2455 IMDB.Score
## 2456 IMDB.Score
## 2457 IMDB.Score
## 2458 IMDB.Score
## 2459 IMDB.Score
## 2460 IMDB.Score
## 2461 IMDB.Score
## 2462 IMDB.Score
## 2463 IMDB.Score
## 2464 IMDB.Score
## 2465 IMDB.Score
## 2466 IMDB.Score
## 2467 IMDB.Score
## 2468 IMDB.Score
## 2469 IMDB.Score
## 2470 IMDB.Score
## 2471 IMDB.Score
## 2472 IMDB.Score
## 2473 IMDB.Score
## 2474 IMDB.Score
## 2475 IMDB.Score
## 2476 IMDB.Score
## 2477 IMDB.Score
## 2478 IMDB.Score
## 2479 IMDB.Score
## 2480 IMDB.Score
## 2481 IMDB.Score
## 2482 IMDB.Score
## 2483 IMDB.Score
## 2484 IMDB.Score
## 2485 IMDB.Score
## 2486 IMDB.Score
## 2487 IMDB.Score
## 2488 IMDB.Score
## 2489 IMDB.Score
## 2490 IMDB.Score
## 2491 IMDB.Score
## 2492 IMDB.Score
## 2493 IMDB.Score
## 2494 IMDB.Score
## 2495 IMDB.Score
## 2496 IMDB.Score
## 2497 IMDB.Score
## 2498 IMDB.Score
## 2499 IMDB.Score
## 2500 IMDB.Score
## 2501 IMDB.Score
## 2502 IMDB.Score
## 2503 IMDB.Score
## 2504 IMDB.Score
## 2505 IMDB.Score
## 2506 IMDB.Score
## 2507 IMDB.Score
## 2508 IMDB.Score
## 2509 IMDB.Score
## 2510 IMDB.Score
## 2511 IMDB.Score
## 2512 IMDB.Score
## 2513 IMDB.Score
## 2514 IMDB.Score
## 2515 IMDB.Score
## 2516 IMDB.Score
## 2517 IMDB.Score
## 2518 IMDB.Score
## 2519 IMDB.Score
## 2520 IMDB.Score
## 2521 IMDB.Score
## 2522 IMDB.Score
## 2523 IMDB.Score
## 2524 IMDB.Score
## 2525 IMDB.Score
## 2526 IMDB.Score
## 2527 IMDB.Score
## 2528 IMDB.Score
## 2529 IMDB.Score
## 2530 IMDB.Score
## 2531 IMDB.Score
## 2532 IMDB.Score
## 2533 IMDB.Score
## 2534 IMDB.Score
## 2535 IMDB.Score
## 2536 IMDB.Score
## 2537 IMDB.Score
## 2538 IMDB.Score
## 2539 IMDB.Score
## 2540 IMDB.Score
## 2541 IMDB.Score
## 2542 IMDB.Score
## 2543 IMDB.Score
## 2544 IMDB.Score
## 2545 IMDB.Score
## 2546 IMDB.Score
## 2547 IMDB.Score
## 2548 IMDB.Score
## 2549 IMDB.Score
## 2550 IMDB.Score
## 2551 IMDB.Score
## 2552 IMDB.Score
## 2553 IMDB.Score
## 2554 IMDB.Score
## 2555 IMDB.Score
## 2556 IMDB.Score
## 2557 IMDB.Score
## 2558 IMDB.Score
## 2559 IMDB.Score
## 2560 IMDB.Score
## 2561 IMDB.Score
## 2562 IMDB.Score
## 2563 IMDB.Score
## 2564 IMDB.Score
## 2565 IMDB.Score
## 2566 IMDB.Score
## 2567 IMDB.Score
## 2568 IMDB.Score
## 2569 IMDB.Score
## 2570 IMDB.Score
## 2571 IMDB.Score
## 2572 IMDB.Score
## 2573 IMDB.Score
## 2574 IMDB.Score
## 2575 IMDB.Score
## 2576 IMDB.Score
## 2577 IMDB.Score
## 2578 IMDB.Score
## 2579 IMDB.Score
## 2580 IMDB.Score
## 2581 IMDB.Score
## 2582 IMDB.Score
## 2583 IMDB.Score
## 2584 IMDB.Score
## 2585 IMDB.Score
## 2586 IMDB.Score
## 2587 IMDB.Score
## 2588 IMDB.Score
## 2589 IMDB.Score
## 2590 IMDB.Score
## 2591 IMDB.Score
## 2592 IMDB.Score
## 2593 IMDB.Score
## 2594 IMDB.Score
## 2595 IMDB.Score
## 2596 IMDB.Score
## 2597 IMDB.Score
## 2598 IMDB.Score
## 2599 IMDB.Score
## 2600 IMDB.Score
## 2601 IMDB.Score
## 2602 IMDB.Score
## 2603 IMDB.Score
## 2604 IMDB.Score
## 2605 IMDB.Score
## 2606 IMDB.Score
## 2607 IMDB.Score
## 2608 IMDB.Score
## 2609 IMDB.Score
## 2610 IMDB.Score
## 2611 IMDB.Score
## 2612 IMDB.Score
## 2613 IMDB.Score
## 2614 IMDB.Score
## 2615 IMDB.Score
## 2616 IMDB.Score
## 2617 IMDB.Score
## 2618 IMDB.Score
## 2619 IMDB.Score
## 2620 IMDB.Score
## 2621 IMDB.Score
## 2622 IMDB.Score
## 2623 IMDB.Score
## 2624 IMDB.Score
## 2625 IMDB.Score
## 2626 IMDB.Score
## 2627 IMDB.Score
## 2628 IMDB.Score
## 2629 IMDB.Score
## 2630 IMDB.Score
## 2631 IMDB.Score
## 2632 IMDB.Score
## 2633 IMDB.Score
## 2634 IMDB.Score
## 2635 IMDB.Score
## 2636 IMDB.Score
## 2637 IMDB.Score
## 2638 IMDB.Score
## 2639 IMDB.Score
## 2640 IMDB.Score
## 2641 IMDB.Score
## 2642 IMDB.Score
## 2643 IMDB.Score
## 2644 IMDB.Score
## 2645 IMDB.Score
## 2646 IMDB.Score
## 2647 IMDB.Score
## 2648 IMDB.Score
## 2649 IMDB.Score
## 2650 IMDB.Score
## 2651 IMDB.Score
## 2652 IMDB.Score
## 2653 IMDB.Score
## 2654 IMDB.Score
## 2655 IMDB.Score
## 2656 IMDB.Score
## 2657 IMDB.Score
## 2658 IMDB.Score
## 2659 IMDB.Score
## 2660 IMDB.Score
## 2661 IMDB.Score
## 2662 IMDB.Score
## 2663 IMDB.Score
## 2664 IMDB.Score
## 2665 IMDB.Score
## 2666 IMDB.Score
## 2667 IMDB.Score
## 2668 IMDB.Score
## 2669 IMDB.Score
## 2670 IMDB.Score
## 2671 IMDB.Score
## 2672 IMDB.Score
## 2673 IMDB.Score
## 2674 IMDB.Score
## 2675 IMDB.Score
## 2676 IMDB.Score
## 2677 IMDB.Score
## 2678 IMDB.Score
## 2679 IMDB.Score
## 2680 IMDB.Score
## 2681 IMDB.Score
## 2682 IMDB.Score
## 2683 IMDB.Score
## 2684 IMDB.Score
## 2685 IMDB.Score
## 2686 IMDB.Score
## 2687 IMDB.Score
## 2688 IMDB.Score
## 2689 IMDB.Score
## 2690 IMDB.Score
## 2691 IMDB.Score
## 2692 IMDB.Score
## 2693 IMDB.Score
## 2694 IMDB.Score
## 2695 IMDB.Score
## 2696 IMDB.Score
## 2697 IMDB.Score
## 2698 IMDB.Score
## 2699 IMDB.Score
## 2700 IMDB.Score
## 2701 IMDB.Score
## 2702 IMDB.Score
## 2703 IMDB.Score
## 2704 IMDB.Score
## 2705 IMDB.Score
## 2706 IMDB.Score
## 2707 IMDB.Score
## 2708 IMDB.Score
## 2709 IMDB.Score
## 2710 IMDB.Score
## 2711 IMDB.Score
## 2712 IMDB.Score
## 2713 IMDB.Score
## 2714 IMDB.Score
## 2715 IMDB.Score
## 2716 IMDB.Score
## 2717 IMDB.Score
## 2718 IMDB.Score
## 2719 IMDB.Score
## 2720 IMDB.Score
## 2721 IMDB.Score
## 2722 IMDB.Score
## 2723 IMDB.Score
## 2724 IMDB.Score
## 2725 IMDB.Score
## 2726 IMDB.Score
## 2727 IMDB.Score
## 2728 IMDB.Score
## 2729 IMDB.Score
## 2730 IMDB.Score
## 2731 IMDB.Score
## 2732 IMDB.Score
## 2733 IMDB.Score
## 2734 IMDB.Score
## 2735 IMDB.Score
## 2736 IMDB.Score
## 2737 IMDB.Score
## 2738 IMDB.Score
## 2739 IMDB.Score
## 2740 IMDB.Score
## 2741 IMDB.Score
## 2742 IMDB.Score
## 2743 IMDB.Score
## 2744 IMDB.Score
## 2745 IMDB.Score
## 2746 IMDB.Score
## 2747 IMDB.Score
## 2748 IMDB.Score
## 2749 IMDB.Score
## 2750 IMDB.Score
## 2751 IMDB.Score
## 2752 IMDB.Score
## 2753 IMDB.Score
## 2754 IMDB.Score
## 2755 IMDB.Score
## 2756 IMDB.Score
## 2757 IMDB.Score
## 2758 IMDB.Score
## 2759 IMDB.Score
## 2760 IMDB.Score
## 2761 IMDB.Score
## 2762 IMDB.Score
## 2763 IMDB.Score
## 2764 IMDB.Score
## 2765 IMDB.Score
## 2766 IMDB.Score
## 2767 IMDB.Score
## 2768 IMDB.Score
## 2769 IMDB.Score
## 2770 IMDB.Score
## 2771 IMDB.Score
## 2772 IMDB.Score
## 2773 IMDB.Score
## 2774 IMDB.Score
## 2775 IMDB.Score
## 2776 IMDB.Score
## 2777 IMDB.Score
## 2778 IMDB.Score
## 2779 IMDB.Score
## 2780 IMDB.Score
## 2781 IMDB.Score
## 2782 IMDB.Score
## 2783 IMDB.Score
## 2784 IMDB.Score
## 2785 IMDB.Score
## 2786 IMDB.Score
## 2787 IMDB.Score
## 2788 IMDB.Score
## 2789 IMDB.Score
## 2790 IMDB.Score
## 2791 IMDB.Score
## 2792 IMDB.Score
## 2793 IMDB.Score
## 2794 IMDB.Score
## 2795 IMDB.Score
## 2796 IMDB.Score
## 2797 IMDB.Score
## 2798 IMDB.Score
## 2799 IMDB.Score
## 2800 IMDB.Score
## 2801 IMDB.Score
## 2802 IMDB.Score
## 2803 IMDB.Score
## 2804 IMDB.Score
## 2805 IMDB.Score
## 2806 IMDB.Score
## 2807 IMDB.Score
## 2808 IMDB.Score
## 2809 IMDB.Score
## 2810 IMDB.Score
## 2811 IMDB.Score
## 2812 IMDB.Score
## 2813 IMDB.Score
## 2814 IMDB.Score
## 2815 IMDB.Score
## 2816 IMDB.Score
## 2817 IMDB.Score
## 2818 IMDB.Score
## 2819 IMDB.Score
## 2820 IMDB.Score
## 2821 IMDB.Score
## 2822 IMDB.Score
## 2823 IMDB.Score
## 2824 IMDB.Score
## 2825 IMDB.Score
## 2826 IMDB.Score
## 2827 IMDB.Score
## 2828 IMDB.Score
## 2829 IMDB.Score
## 2830 IMDB.Score
## 2831 IMDB.Score
## 2832 IMDB.Score
## 2833 IMDB.Score
## 2834 IMDB.Score
## 2835 IMDB.Score
## 2836 IMDB.Score
## 2837 IMDB.Score
## 2838 IMDB.Score
## 2839 IMDB.Score
## 2840 IMDB.Score
## 2841 IMDB.Score
## 2842 IMDB.Score
## 2843 IMDB.Score
## 2844 IMDB.Score
## 2845 IMDB.Score
## 2846 IMDB.Score
## 2847 IMDB.Score
## 2848 IMDB.Score
## 2849 IMDB.Score
## 2850 IMDB.Score
## 2851 IMDB.Score
## 2852 IMDB.Score
## 2853 IMDB.Score
## 2854 IMDB.Score
## 2855 IMDB.Score
## 2856 IMDB.Score
## 2857 IMDB.Score
## 2858 IMDB.Score
## 2859 IMDB.Score
## 2860 IMDB.Score
## 2861 IMDB.Score
## 2862 IMDB.Score
## 2863 IMDB.Score
## 2864 IMDB.Score
## 2865 IMDB.Score
## 2866 IMDB.Score
## 2867 IMDB.Score
## 2868 IMDB.Score
## 2869 IMDB.Score
## 2870 IMDB.Score
## 2871 IMDB.Score
## 2872 IMDB.Score
## 2873 IMDB.Score
## 2874 IMDB.Score
## 2875 IMDB.Score
## 2876 IMDB.Score
## 2877 IMDB.Score
## 2878 IMDB.Score
## 2879 IMDB.Score
## 2880 IMDB.Score
## 2881 IMDB.Score
## 2882 IMDB.Score
## 2883 IMDB.Score
## 2884 IMDB.Score
## 2885 IMDB.Score
## 2886 IMDB.Score
## 2887 IMDB.Score
## 2888 IMDB.Score
## 2889 IMDB.Score
## 2890 IMDB.Score
## 2891 IMDB.Score
## 2892 IMDB.Score
## 2893 IMDB.Score
## 2894 IMDB.Score
## 2895 IMDB.Score
## 2896 IMDB.Score
## 2897 IMDB.Score
## 2898 IMDB.Score
## 2899 IMDB.Score
## 2900 IMDB.Score
## 2901 IMDB.Score
## 2902 IMDB.Score
## 2903 IMDB.Score
## 2904 IMDB.Score
## 2905 IMDB.Score
## 2906 IMDB.Score
## 2907 IMDB.Score
## 2908 IMDB.Score
## 2909 IMDB.Score
## 2910 IMDB.Score
## 2911 IMDB.Score
## 2912 IMDB.Score
## 2913 IMDB.Score
## 2914 IMDB.Score
## 2915 IMDB.Score
## 2916 IMDB.Score
## 2917 IMDB.Score
## 2918 IMDB.Score
## 2919 IMDB.Score
## 2920 IMDB.Score
## 2921   Language
## 2922   Language
## 2923   Language
## 2924   Language
## 2925   Language
## 2926   Language
## 2927   Language
## 2928   Language
## 2929   Language
## 2930   Language
## 2931   Language
## 2932   Language
## 2933   Language
## 2934   Language
## 2935   Language
## 2936   Language
## 2937   Language
## 2938   Language
## 2939   Language
## 2940   Language
## 2941   Language
## 2942   Language
## 2943   Language
## 2944   Language
## 2945   Language
## 2946   Language
## 2947   Language
## 2948   Language
## 2949   Language
## 2950   Language
## 2951   Language
## 2952   Language
## 2953   Language
## 2954   Language
## 2955   Language
## 2956   Language
## 2957   Language
## 2958   Language
## 2959   Language
## 2960   Language
## 2961   Language
## 2962   Language
## 2963   Language
## 2964   Language
## 2965   Language
## 2966   Language
## 2967   Language
## 2968   Language
## 2969   Language
## 2970   Language
## 2971   Language
## 2972   Language
## 2973   Language
## 2974   Language
## 2975   Language
## 2976   Language
## 2977   Language
## 2978   Language
## 2979   Language
## 2980   Language
## 2981   Language
## 2982   Language
## 2983   Language
## 2984   Language
## 2985   Language
## 2986   Language
## 2987   Language
## 2988   Language
## 2989   Language
## 2990   Language
## 2991   Language
## 2992   Language
## 2993   Language
## 2994   Language
## 2995   Language
## 2996   Language
## 2997   Language
## 2998   Language
## 2999   Language
## 3000   Language
## 3001   Language
## 3002   Language
## 3003   Language
## 3004   Language
## 3005   Language
## 3006   Language
## 3007   Language
## 3008   Language
## 3009   Language
## 3010   Language
## 3011   Language
## 3012   Language
## 3013   Language
## 3014   Language
## 3015   Language
## 3016   Language
## 3017   Language
## 3018   Language
## 3019   Language
## 3020   Language
## 3021   Language
## 3022   Language
## 3023   Language
## 3024   Language
## 3025   Language
## 3026   Language
## 3027   Language
## 3028   Language
## 3029   Language
## 3030   Language
## 3031   Language
## 3032   Language
## 3033   Language
## 3034   Language
## 3035   Language
## 3036   Language
## 3037   Language
## 3038   Language
## 3039   Language
## 3040   Language
## 3041   Language
## 3042   Language
## 3043   Language
## 3044   Language
## 3045   Language
## 3046   Language
## 3047   Language
## 3048   Language
## 3049   Language
## 3050   Language
## 3051   Language
## 3052   Language
## 3053   Language
## 3054   Language
## 3055   Language
## 3056   Language
## 3057   Language
## 3058   Language
## 3059   Language
## 3060   Language
## 3061   Language
## 3062   Language
## 3063   Language
## 3064   Language
## 3065   Language
## 3066   Language
## 3067   Language
## 3068   Language
## 3069   Language
## 3070   Language
## 3071   Language
## 3072   Language
## 3073   Language
## 3074   Language
## 3075   Language
## 3076   Language
## 3077   Language
## 3078   Language
## 3079   Language
## 3080   Language
## 3081   Language
## 3082   Language
## 3083   Language
## 3084   Language
## 3085   Language
## 3086   Language
## 3087   Language
## 3088   Language
## 3089   Language
## 3090   Language
## 3091   Language
## 3092   Language
## 3093   Language
## 3094   Language
## 3095   Language
## 3096   Language
## 3097   Language
## 3098   Language
## 3099   Language
## 3100   Language
## 3101   Language
## 3102   Language
## 3103   Language
## 3104   Language
## 3105   Language
## 3106   Language
## 3107   Language
## 3108   Language
## 3109   Language
## 3110   Language
## 3111   Language
## 3112   Language
## 3113   Language
## 3114   Language
## 3115   Language
## 3116   Language
## 3117   Language
## 3118   Language
## 3119   Language
## 3120   Language
## 3121   Language
## 3122   Language
## 3123   Language
## 3124   Language
## 3125   Language
## 3126   Language
## 3127   Language
## 3128   Language
## 3129   Language
## 3130   Language
## 3131   Language
## 3132   Language
## 3133   Language
## 3134   Language
## 3135   Language
## 3136   Language
## 3137   Language
## 3138   Language
## 3139   Language
## 3140   Language
## 3141   Language
## 3142   Language
## 3143   Language
## 3144   Language
## 3145   Language
## 3146   Language
## 3147   Language
## 3148   Language
## 3149   Language
## 3150   Language
## 3151   Language
## 3152   Language
## 3153   Language
## 3154   Language
## 3155   Language
## 3156   Language
## 3157   Language
## 3158   Language
## 3159   Language
## 3160   Language
## 3161   Language
## 3162   Language
## 3163   Language
## 3164   Language
## 3165   Language
## 3166   Language
## 3167   Language
## 3168   Language
## 3169   Language
## 3170   Language
## 3171   Language
## 3172   Language
## 3173   Language
## 3174   Language
## 3175   Language
## 3176   Language
## 3177   Language
## 3178   Language
## 3179   Language
## 3180   Language
## 3181   Language
## 3182   Language
## 3183   Language
## 3184   Language
## 3185   Language
## 3186   Language
## 3187   Language
## 3188   Language
## 3189   Language
## 3190   Language
## 3191   Language
## 3192   Language
## 3193   Language
## 3194   Language
## 3195   Language
## 3196   Language
## 3197   Language
## 3198   Language
## 3199   Language
## 3200   Language
## 3201   Language
## 3202   Language
## 3203   Language
## 3204   Language
## 3205   Language
## 3206   Language
## 3207   Language
## 3208   Language
## 3209   Language
## 3210   Language
## 3211   Language
## 3212   Language
## 3213   Language
## 3214   Language
## 3215   Language
## 3216   Language
## 3217   Language
## 3218   Language
## 3219   Language
## 3220   Language
## 3221   Language
## 3222   Language
## 3223   Language
## 3224   Language
## 3225   Language
## 3226   Language
## 3227   Language
## 3228   Language
## 3229   Language
## 3230   Language
## 3231   Language
## 3232   Language
## 3233   Language
## 3234   Language
## 3235   Language
## 3236   Language
## 3237   Language
## 3238   Language
## 3239   Language
## 3240   Language
## 3241   Language
## 3242   Language
## 3243   Language
## 3244   Language
## 3245   Language
## 3246   Language
## 3247   Language
## 3248   Language
## 3249   Language
## 3250   Language
## 3251   Language
## 3252   Language
## 3253   Language
## 3254   Language
## 3255   Language
## 3256   Language
## 3257   Language
## 3258   Language
## 3259   Language
## 3260   Language
## 3261   Language
## 3262   Language
## 3263   Language
## 3264   Language
## 3265   Language
## 3266   Language
## 3267   Language
## 3268   Language
## 3269   Language
## 3270   Language
## 3271   Language
## 3272   Language
## 3273   Language
## 3274   Language
## 3275   Language
## 3276   Language
## 3277   Language
## 3278   Language
## 3279   Language
## 3280   Language
## 3281   Language
## 3282   Language
## 3283   Language
## 3284   Language
## 3285   Language
## 3286   Language
## 3287   Language
## 3288   Language
## 3289   Language
## 3290   Language
## 3291   Language
## 3292   Language
## 3293   Language
## 3294   Language
## 3295   Language
## 3296   Language
## 3297   Language
## 3298   Language
## 3299   Language
## 3300   Language
## 3301   Language
## 3302   Language
## 3303   Language
## 3304   Language
## 3305   Language
## 3306   Language
## 3307   Language
## 3308   Language
## 3309   Language
## 3310   Language
## 3311   Language
## 3312   Language
## 3313   Language
## 3314   Language
## 3315   Language
## 3316   Language
## 3317   Language
## 3318   Language
## 3319   Language
## 3320   Language
## 3321   Language
## 3322   Language
## 3323   Language
## 3324   Language
## 3325   Language
## 3326   Language
## 3327   Language
## 3328   Language
## 3329   Language
## 3330   Language
## 3331   Language
## 3332   Language
## 3333   Language
## 3334   Language
## 3335   Language
## 3336   Language
## 3337   Language
## 3338   Language
## 3339   Language
## 3340   Language
## 3341   Language
## 3342   Language
## 3343   Language
## 3344   Language
## 3345   Language
## 3346   Language
## 3347   Language
## 3348   Language
## 3349   Language
## 3350   Language
## 3351   Language
## 3352   Language
## 3353   Language
## 3354   Language
## 3355   Language
## 3356   Language
## 3357   Language
## 3358   Language
## 3359   Language
## 3360   Language
## 3361   Language
## 3362   Language
## 3363   Language
## 3364   Language
## 3365   Language
## 3366   Language
## 3367   Language
## 3368   Language
## 3369   Language
## 3370   Language
## 3371   Language
## 3372   Language
## 3373   Language
## 3374   Language
## 3375   Language
## 3376   Language
## 3377   Language
## 3378   Language
## 3379   Language
## 3380   Language
## 3381   Language
## 3382   Language
## 3383   Language
## 3384   Language
## 3385   Language
## 3386   Language
## 3387   Language
## 3388   Language
## 3389   Language
## 3390   Language
## 3391   Language
## 3392   Language
## 3393   Language
## 3394   Language
## 3395   Language
## 3396   Language
## 3397   Language
## 3398   Language
## 3399   Language
## 3400   Language
## 3401   Language
## 3402   Language
## 3403   Language
## 3404   Language
## 3405   Language
## 3406   Language
## 3407   Language
## 3408   Language
## 3409   Language
## 3410   Language
## 3411   Language
## 3412   Language
## 3413   Language
## 3414   Language
## 3415   Language
## 3416   Language
## 3417   Language
## 3418   Language
## 3419   Language
## 3420   Language
## 3421   Language
## 3422   Language
## 3423   Language
## 3424   Language
## 3425   Language
## 3426   Language
## 3427   Language
## 3428   Language
## 3429   Language
## 3430   Language
## 3431   Language
## 3432   Language
## 3433   Language
## 3434   Language
## 3435   Language
## 3436   Language
## 3437   Language
## 3438   Language
## 3439   Language
## 3440   Language
## 3441   Language
## 3442   Language
## 3443   Language
## 3444   Language
## 3445   Language
## 3446   Language
## 3447   Language
## 3448   Language
## 3449   Language
## 3450   Language
## 3451   Language
## 3452   Language
## 3453   Language
## 3454   Language
## 3455   Language
## 3456   Language
## 3457   Language
## 3458   Language
## 3459   Language
## 3460   Language
## 3461   Language
## 3462   Language
## 3463   Language
## 3464   Language
## 3465   Language
## 3466   Language
## 3467   Language
## 3468   Language
## 3469   Language
## 3470   Language
## 3471   Language
## 3472   Language
## 3473   Language
## 3474   Language
## 3475   Language
## 3476   Language
## 3477   Language
## 3478   Language
## 3479   Language
## 3480   Language
## 3481   Language
## 3482   Language
## 3483   Language
## 3484   Language
## 3485   Language
## 3486   Language
## 3487   Language
## 3488   Language
## 3489   Language
## 3490   Language
## 3491   Language
## 3492   Language
## 3493   Language
## 3494   Language
## 3495   Language
## 3496   Language
## 3497   Language
## 3498   Language
## 3499   Language
## 3500   Language
## 3501   Language
## 3502   Language
## 3503   Language
## 3504   Language
fivenum(df$IMDB.Score)
## [1] 2.50 5.70 6.35 7.00 9.00
length(df)
## [1] 6
mean(df$Runtime)
## [1] 93.57705
median(df$Runtime)
## [1] 97
mode(df$Runtime)
## [1] "numeric"
mad(df$Runtime)
## [1] 16.3086
var(df$Runtime)
## [1] 770.711
quantile(df$Runtime)
##   0%  25%  50%  75% 100% 
##    4   86   97  108  209
var(df$Runtime)
## [1] 770.711
rbind(df)
##                                                                                                          Title
## 1                                                                                              Enter the Anime
## 2                                                                                                  Dark Forces
## 3                                                                                                      The App
## 4                                                                                               The Open House
## 5                                                                                                  Kaali Khuhi
## 6                                                                                                        Drive
## 7                                                                                            Leyla Everlasting
## 8                                                                              The Last Days of American Crime
## 9                                                                                                      Paradox
## 10                                                                                          Sardar Ka Grandson
## 11                                                                                        Searching for Sheela
## 12                                                                                                    The Call
## 13                                                                                                     Whipped
## 14                                                                                          All Because of You
## 15                                                                                                       Mercy
## 16                                                                                              After the Raid
## 17                                                                                               Ghost Stories
## 18                                                                                    The Last Thing He Wanted
## 19                                                                                   What Happened to Mr. Cha?
## 20                                                                                                  Death Note
## 21                                                                           Hello Privilege. It's Me, Chelsea
## 22                                                                                            Secret Obsession
## 23                                                                                                  Sextuplets
## 24                                                                                       The Girl on the Train
## 25                                                                                               Thunder Force
## 26                                                                                                Fatal Affair
## 27                                                                                                Just Say Yes
## 28                                                                                            Seriously Single
## 29                                                                       The Misadventures of Hedi and Cokeman
## 30                                                                                            5 Star Christmas
## 31                                                                                                 After Maria
## 32                                                               I Am the Pretty Thing That Lives in the House
## 33                                                                                                 Paris Is Us
## 34                                                            Porta dos Fundos: The First Temptation of Christ
## 35                                                                                                 Rattlesnake
## 36                                                                                                 The Players
## 37                                                                                                  We Are One
## 38                                                                                               Finding Agnes
## 39                                                                                                          IO
## 40                                                                                                  Sentinelle
## 41                                                                                                 Sol Levante
## 42                                                                                                 The Binding
## 43                                                                                            We Can Be Heroes
## 44                                                                                         Christmas Crossfire
## 45                                                                                                  Coin Heist
## 46                                                                                          Mrs. Serial Killer
## 47                                                                          Nobody Sleeps in the Woods Tonight
## 48                                                                                                 Take the 10
## 49                                                                                              The Main Event
## 50                                                                                            The Ridiculous 6
## 51                                                                                             Earth and Blood
## 52                                                                                                    Fearless
## 53                                                                                                Holiday Rush
## 54                                                                                         The Day of the Lord
## 55                                                                                               Airplane Mode
## 56                                                                                                 How It Ends
## 57                                                                                  Love Like the Falling Rain
## 58                                                                                                     Rebirth
## 59                                                                                                Squared Love
## 60                                                                                                     Cadaver
## 61                                                                                                    Clinical
## 62                                                                                             Coffee & Kareem
## 63                                                                                                        Dude
## 64                                                                                                  Geez & Ann
## 65                                                                                      The Larva Island Movie
## 66                                                                                                #REALITYHIGH
## 67                                                           American Factory: A Conversation with the Obamas 
## 68                                                                                                  Desperados
## 69                                                                      Dolly Parton's Christmas on the Square
## 70                                                                                          Father of the Year
## 71                                                                                                   Firebrand
## 72                                                                                                   Ghost Lab
## 73                                                                                            Girlfriend's Day
## 74                                                                           Handsome: A Netflix Mystery Movie
## 75                                                                                             Hubie Halloween
## 76                                                                                                       Ibiza
## 77                                                                                            Rim of the World
## 78                                                                                                Sandy Wexler
## 79                                                                                           See You Yesterday
## 80                                                                         Still Laugh-In: The Stars Celebrate
## 81                                                                                         Strip Down, Rise Up
## 82                                                                                                   Tall Girl
## 83                                                                                                   The Beast
## 84                                                                                                 The Week Of
## 85                                                                       A Christmas Prince: The Royal Wedding
## 86                                                                                              Back to School
## 87                                                                                              Dangerous Lies
## 88                                                                              Gunjan Saxena: The Kargil Girl
## 89                                                                                                   Intuition
## 90                                                                    The Most Assassinated Woman in the World
## 91                                                                                         Things Heard & Seen
## 92                                                                                            To Each, Her Own
## 93                                                                    Who Would You Take to a Deserted Island?
## 94                                                                                                        XOXO
## 95                                                                     A Babysitter's Guide to Monster Hunting
## 96                                                                          A Christmas Prince: The Royal Baby
## 97                                                                                          Despite Everything
## 98                                                                       Dolly Kitty and Those Twinkling Stars
## 99                                                                                    Freaks: You're One of Us
## 100                                                                                            Game Over, Man!
## 101                                                                                                     Guilty
## 102                                                                                          In the Tall Grass
## 103                                                                                              Madame Claude
## 104                                                                                                      Naked
## 105                                                                                           Outside the Wire
## 106                                                                        The Princess Switch: Switched Again
## 107                                                                                     Under the Riccione Sun
## 108                                                                                    A Very Murray Christmas
## 109                                                                                               Been So Long
## 110                                                                                                  Dead Kids
## 111                                                                                              Get the Grift
## 112                                                                                       Ghosts of Sugar Land
## 113                                                                                               House Arrest
## 114                                                                        Kevin Hart's Guide to Black History
## 115                                                                                        Love Wedding Repeat
## 116                                                                                                       Mute
## 117                                                                                                    Òlòt?ré
## 118                                                                                                    Red Dot
## 119                                                                                                Ride or Die
## 120                                                                                               Step Sisters
## 121                                                                                    The Cloverfield Paradox
## 122                                                                                The Knight Before Christmas
## 123                                                                      The Legacy of a Whitetail Deer Hunter
## 124                                                                                                The Package
## 125                                                                                              Unicorn Store
## 126                                                                                               Wine Country
## 127                                                                                                Bomb Scared
## 128                                                                                              Brahman Naman
## 129                                                                                                 Double Dad
## 130                                                                                           Falling Inn Love
## 131                                                                                              Hold the Dark
## 132                                                                                           Love, Guaranteed
## 133                                                                                        One-Way to Tomorrow
## 134                                                                            Sarah Cooper: Everything's Fine
## 135                                                                                             The Last Laugh
## 136                                                                                          The Last Paradiso
## 137                                                                                           The Midnight Sky
## 138                                                                                              The Paramedic
## 139                                                                                              The Sleepover
## 140                                                                                     Vampires vs. the Bronx
## 141                                                                                       Why Did You Kill Me?
## 142                                                                                                A Week Away
## 143                                                                                           Caught by a Wave
## 144                                                                                      Christmas Inheritance
## 145                                                                                                 Dad Wanted
## 146                                                                                        El Camino Christmas
## 147                                                                                                        Eli
## 148                                                                                           Ginny Weds Sunny
## 149                                                                                                   Good Sam
## 150                                                                                                  Lionheart
## 151                                                                                                Little Evil
## 152                                                                                                   One Take
## 153                                                                                           Out of Many, One
## 154                                                                                                Point Blank
## 155                                                                                                 Prime Time
## 156                                                                                                The Do-Over
## 157                                                                                       The Holiday Calendar
## 158                                                                                    The Woman in the Window
## 159                                                                                            The Wrong Missy
## 160                                                                                             Velvet Buzzsaw
## 161                                                                                                    Yes Day
## 162                                                                                                  15 August
## 163                                                                                     A California Christmas
## 164                                                                                         A Christmas Prince
## 165                                                                                        All Day and a Night
## 166                                                                                               American Son
## 167                                                                                                      Barry
## 168                                                                                                  Candy Jar
## 169                                                                                    Choked: Paisa Bolta Hai
## 170                                                                                               Class of '83
## 171                                                                                                 Extinction
## 172                                                                                          Happy Anniversary
## 173                                                                                             I Am All Girls
## 174                                                                                                Let It Snow
## 175                                                                                                    Mascots
## 176                                                                                   Operation Christmas Drop
## 177                                                                                               Rajma Chawal
## 178                                                                                               Rich in Love
## 179                                                                                                Rising High
## 180                                                                                                Rodney King
## 181                                                                                  Sierra Burgess Is a Loser
## 182                                                                                               Small Crimes
## 183                                                                                     Special Correspondents
## 184                                                                                                        TAU
## 185                                                                                            The After Party
## 186                                                                               The Babysitter: Killer Queen
## 187                                                                                           The Claus Family
## 188                                                                                        The Kissing Booth 2
## 189                                                                                           The Perfect Date
## 190                                                                                             What We Wanted
## 191                                                                                            You've Got This
## 192                                                                                                 6 Balloons
## 193                                                                                          A Fall from Grace
## 194                                                                                                    Amateur
## 195                                                                                           Army of the Dead
## 196                                                                                                        Cam
## 197                                                                                            Earthquake Bird
## 198                                                             Frankenstein's Monster's Monster, Frankenstein
## 199                                                                                                 Horse Girl
## 200                                                         Notes from Dunblane: Lesson from a School Shooting
## 201                                                                                                      Maska
## 202                                                                                                The Decline
## 203                                                                               The Minimalists: Less Is Now
## 204                                                                                             The Polka King
## 205                                                                                                   The Prom
## 206                                                                  True Memoirs of an International Assassin
## 207                                                                                                     Ultras
## 208                                                                                                Come Sunday
## 209                                                                                       Forgive Us Our Debts
## 210                                                                                                       iBoy
## 211                                                                                                 Lovefucked
## 212                                                                                                    Juanita
## 213                                                                                             Murder Mystery
## 214                                                                                              Project Power
## 215                                                                                                    Rebecca
## 216                                                                         The Christmas Chronicles: Part Two
## 217                                                                                          The Kissing Booth
## 218                                                                                        The Princess Switch
## 219                                                                     To All the Boys: P.S. I Still Love You
## 220                                                                                                War Machine
## 221                                                                                              6 Underground
## 222                                                                               Between Two Ferns: The Movie
## 223                                                                                              Burning Sands
## 224                                                                                           Casting JonBenet
## 225                                                                                 Deidra & Laney Rob a Train
## 226                                                                                             Finding 'Ohana
## 227                                                                                                   Holidate
## 228                                                                                        Holiday in the Wild
## 229                                                                                           Hot Girls Wanted
## 230                                                                                                Like Father
## 231                                                                                                 Lost Girls
## 232                                                                                                  Otherhood
## 233                                                                                      Pee-wee's Big Holiday
## 234                                                                                                 Rogue City
## 235                                                                                                     Sergio
## 236                                                                                                Stuck Apart
## 237                                                                                       Tersanjung the Movie
## 238                                                                                                 The Killer
## 239                                                                                              The Lovebirds
## 240                                                                            The Most Hated Woman in America
## 241                                                                                             The Perfection
## 242                                                                              Tribhanga – Tedhi Medhi Crazy
## 243                                                                                            Unknown Origins
## 244                                                                                                    Work It
## 245                                                                                                 Alien Xmas
## 246                                                                                Baggio: The Divine Ponytail
## 247                                                                                                 Below Zero
## 248                                                                                                   Citation
## 249                                                                                     Crazy Awesome Teachers
## 250                                                                              Have You Ever Seen Fireflies?
## 251                                                                                           High Flying Bird
## 252                                                                                  In the Shadow of the Moon
## 253                                                                                                Lost Bullet
## 254                                                                         Octonauts & the Caves of Sac Actun
## 255                                                                                      Offering to the Storm
## 256                                                                                            Roxanne Roxanne
## 257                                                                                              Someone Great
## 258                                                                                       Spenser Confidential
## 259                                                                                  The Land of Steady Habits
## 260                                                                                          The Rachel Divide
## 261                                                                                                    Voyuer 
## 262                                                                                                 Win It All
## 263                                                                                                       1922
## 264                                                                                     A Tale of Two Kitchens
## 265                                                                                           Alex Strangelove
## 266                                                                                                    Apostle
## 267                                                                                                      Benji
## 268                                                                                                     Bright
## 269                                                                                                      Cargo
## 270                                                                                            Concrete Cowboy
## 271                                                                                              Feel the Beat
## 272                                                                                               Get the Goat
## 273                                                                                       I Am Not an Easy Man
## 274                                                                                                June & Kopi
## 275                                                                                              Music Teacher
## 276                                                                                       Nail Bomber: Manhunt
## 277                                                                                           Notes for My Son
## 278                                                                                                      Polar
## 279                                                                        Porta dos Fundos: The Last Hangover
## 280                                                                                                Sand Castle
## 281                                                                                               Shimmer Lake
## 282                                                                                                   Spectral
## 283                                                                                             The Babysitter
## 284                                                                                              The Discovery
## 285                                                                                         The Forest of Love
## 286                                                                                             The Laundromat
## 287                                                                               The Legend of Cocaine Island
## 288                                                                                               The Outsider
## 289                                                                                               Time to Hunt
## 290                                                                        To All the Boys: Always and Forever
## 291                                                                           Travis Scott: Look Mom I Can Fly
## 292                                                                                                   Uncorked
## 293                                                                                      Anelka: Misunderstood
## 294                                                                       Ariana Grande: Excuse Me, I Love You
## 295                                                                                                        ARQ
## 296                                                                                                    Birders
## 297                                                                                       Como Caído del Cielo
## 298                                                                                                First Match
## 299                                                                                                  Fractured
## 300                                                                                          Irreplaceable You
## 301                                                                                                 Isi & Ossi
## 302                                                                          John Was Trying to Contact Aliens
## 303                                                                                               Layla Majnun
## 304                                                                   Murder to Mercy: The Cyntoia Brown Story
## 305                                                                                                 My Own Man
## 306                                                                                         Nappily Ever After
## 307                                                                                              Over the Moon
## 308                                                                                                Street Flow
## 309                                                                                              Strong Island
## 310                                                                    Sturgill Simpson Presents: Sound & Fury
## 311                                                                                            Take Your Pills
## 312                                                                                        The Heartbreak Club
## 313                                                                                        The Mars Generation
## 314                                                                                               The Occupant
## 315                                                                                            The Willoughbys
## 316                                                                                            Triple Frontier
## 317                                                                                             Two Catalonias
## 318                                                                                         Walk. Ride. Rodeo.
## 319                                                                                                   Wheelman
## 320                                                                                          When We First Met
## 321                                                                                             A 3 Minute Hug
## 322                                                                                      All the Bright Places
## 323                                                                                           All Together Now
## 324                                                                                  Altered Carbon: Resleeved
## 325                                                                  Antoine Griezmann: The Making of a Legend
## 326                                                                                                    Canvas 
## 327                                                                    Chadwick Boseman: Portrait of an Artist
## 328                                                                                                 Chopsticks
## 329                                                                                                Da 5 Bloods
## 330                                                                          Dolly Parton: A MusiCares Tribute
## 331                                                            Eurovision Song Contest: The Story of Fire Saga
## 332                                                                                              Gerald's Game
## 333                                                                                                  His House
## 334                                                                         Jingle Jangle: A Christmas Journey
## 335                                                                                          Life Overtakes Me
## 336                                                                                               Lust Stories
## 337                                                                                                    Monster
## 338                                                                               Mowgli: Legend of the Jungle
## 339                                                                                      Nobody Knows I'm Here
## 340                                                                     Nobody Speak: Trials of the Free Press
## 341                                                                                                     Oxygen
## 342                                                                                                  Set It Up
## 343                                                                               The Incredible Jessica James
## 344                                                                                                  Tigertail
## 345                                                                                                     Tramps
## 346                                                                                          What Did Jack Do?
## 347                                                                                                   Bad Trip
## 348                                                                                                   Bird Box
## 349                                                                                                    Bulbbul
## 350                                                                                            Crazy About Her
## 351                                                                                            Elisa & Marcela
## 352                                                                                   I'll Sleep When I'm Dead
## 353                                                                              I'm Thinking of Ending Things
## 354                                                                                         It Takes a Lunatic
## 355                                                                                                  Milestone
## 356                                                                                              Recovery Boys
## 357                                                                     ReMastered: Who Killed Jam Master Jay?
## 358                                                                                    Shawn Mendes: In Wonder
## 359                                                                                             Space Sweepers
## 360                                                                                          The American Meme
## 361                                                                                                  The Angel
## 362                                                                                       The Crimes That Bind
## 363                                                                                  The Red Sea Diving Resort
## 364                                                                                What Would Sophia Loren Do?
## 365                                                                                             A Whisker Away
## 366                                                                                            Ajeeb Daastaans
## 367                                                                                     Arlo the Alligator Boy
## 368                                                                               Bikram: Yogi, Guru, Predator
## 369                                                                                                     Blame!
## 370                                                                                               Blue Miracle
## 371                                                                                              CounterPunch 
## 372                                                                    Crack: Cocaine, Corruption & Conspiracy
## 373                                                                                                 Extraction
## 374                                                                                               Giving Voice
## 375                                                                                            Hillbilly Elegy
## 376                                                                         Hope Frozen: A Quest to Live Twice
## 377                                                                                            Imperial Dreams
## 378                                                                                     Just Another Christmas
## 379                                                                                           Little Miss Sumo
## 380                                                                                            Malcolm & Marie
## 381                                                        Michael Bolton's Big, Sexy, Valentine's Day Special
## 382                                                                                                      Moxie
## 383                                                                                          Night in Paradise
## 384                                                                                                Paper Lives
## 385                                                                                   Parchis: The Documentary
## 386                                                                                                   Tallulah
## 387                                                                                              The Old Guard
## 388                                                                           Tony Robbins: I Am Not Your Guru
## 389                                                                                                   Upstarts
## 390                                                                                                    22 July
## 391                                                                                                     7 años
## 392                                                                                A Futile and Stupid Gesture
## 393                                                              A Life of Speed: The Juan Manuel Fangio Story
## 394                                                                                    A Love Song for Latasha
## 395                                                                                           All in My Family
## 396                                                                                         Always Be My Maybe
## 397                                                                                                   Becoming
## 398                                                                                       Long Live Brij Mohan
## 399                                                                                                    Calibre
## 400                                                                                              Death to 2020
## 401                                                                                        GIMS: On the Record
## 402                                                               Have a Good Trip: Adventures in Psychedelics
## 403                                                                                                 Heroin(e) 
## 404                                                                                                 Mercury 13
## 405                                                                                          Saving Capitalism
## 406                                                                                                Serious Men
## 407                                                                                       The Boys in the Band
## 408                                                                   The Boys in the Band: Something Personal
## 409                                                                                             The Life Ahead
## 410                                                                                 The Other Side of the Wind
## 411                                                                                                 The Trader
## 412                                                                                                To the Bone
## 413                                                                                Tony Parker: The Final Shot
## 414                                                                                                   AK vs AK
## 415                                                                                                Amanda Knox
## 416                                                                               Bigflo & Oil: Hip Hop Frenzy
## 417                                                                              Biggie: I Got a Story to Tell
## 418                                                                                           Cops and Robbers
## 419                                                                 I Don't Feel at Home in This World Anymore
## 420                                                                                                  Laerte-se
## 421                                                                                                       Mank
## 422                                                                                         Our Souls at Night
## 423                                                                                                Outlaw King
## 424                                                                                                   Pagglait
## 425                                                                          ReMastered: Who Shot the Sheriff?
## 426                                                                                              Seeing Allred
## 427                                                                                         Spelling the Dream
## 428                                                                                     The Claudia Kishi Club
## 429                                                                                             The Half of It
## 430                                                                                             The Highwaymen
## 431                                      The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 432                                                                  The Meyerowitz Stories (New and Selected)
## 433                                                                        Feminists: What Were They Thinking?
## 434                                                                                        Gaga: Five Foot Two
## 435                                I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 436                                                                                              Kingdom of Us
## 437                                                                                 Lorena, Light-Footed Woman
## 438                                                                      Los Tigres del Norte at Folsom Prison
## 439                                                                                   Ma Rainey's Black Bottom
## 440                                                       Ma Rainey's Black Bottom: A Legacy Brought to Screen
## 441                                                    Operation Varsity Blues: The College Admissions Scandal
## 442                                                                                                       Pele
## 443                                                                        ReMastered: Devil at the Crossroads
## 444                                                                               ReMastered: The Lion's Share
## 445                                                                    ReMastered: The Miami Showband Massacre
## 446                                                                                                  Resurface
## 447                                                                          Rocko's Modern Life: Static Cling
## 448                                                                                                Rose Island
## 449                                                                                   The Christmas Chronicles
## 450                                                                                                   The Dirt
## 451                                                                                     The Night Comes for Us
## 452                                                     13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 453                                                                                         Angela's Christmas
## 454                                                                                    Angela's Christmas Wish
## 455                                                                                                      Beats
## 456                                                                                            Circus of Books
## 457                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 458                                                                                    Derren Brown: Sacrifice
## 459                                                                                    El Pepe: A Supreme Life
## 460                                                                                                   End Game
## 461                                                                                                     Evelyn
## 462                                                                                                      Ferry
## 463                                                                                           Grass Is Greener
## 464                                                                        Guillermo Vilas: Settling the Score
## 465                                                                            Joshua: Teenager vs. Superpower
## 466                                                                        Keith Richards: Under the Influence
## 467                                                                                       Knock Down the House
## 468                                                                      Loudon Wainwright III: Surviving Twin
## 469                                                                                  My Beautiful Broken Brain
## 470                                                                                                  One of Us
## 471                                                                                          Pieces of a Woman
## 472                                                                                       Ram Dass, Going Home
## 473                                                                 ReMastered: Tricky Dick & the Man in Black
## 474                                                                                          Rooting for Roona
## 475                                                                                     The Devil All the Time
## 476                                                                                                    The Dig
## 477                                                                                             The Great Hack
## 478                                                                                            The White Tiger
## 479                                                                          To All the Boys I've Loved Before
## 480                                                                      American Murder: The Family Next Door
## 481                                                                                             Audrie & Daisy
## 482                                                                                First They Killed My Father
## 483                                                               Fyre: The Greatest Party That Never Happened
## 484                                                                                           Into the Inferno
## 485                                                                                               LA Originals
## 486                                                                                               Ladies First
## 487                                                                                       Love per Square Foot
## 488                                                                                                  Paddleton
## 489                                                                                               Private Life
## 490                                                                                                  Seventeen
## 491                                                                                                  Sometimes
## 492                                                                                                       Soni
## 493                                                                                    The 40-Year-Old Version
## 494                                                                                               The Disciple
## 495                                                                                      The Edge of Democracy
## 496                                                                                                   The King
## 497                                                                The Road to El Camino: A Breaking Bad Movie
## 498                                                                                    The Siege of Jadotville
## 499                                                                                                      Zion 
## 500                                                                                        Dolemite Is My Name
## 501                                                                            El Camino: A Breaking Bad Movie
## 502                                                                                                   Extremis
## 503                                                                                         Father Soldier Son
## 504                                                                                         Get Me Roger Stone
## 505                                                                                         I'm No Longer Here
## 506                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 507                                                                         Octonauts & the Great Barrier Reef
## 508                                                                                                       Okja
## 509                                                                                                 On My Skin
## 510                                                                                             Raat Akeli Hai
## 511                                                                        ReMastered: Massacre at the Stadium
## 512                                                                  ReMastered: The Two Killings of Sam Cooke
## 513                                                                                Secrets of the Saqqara Tomb
## 514                                                                                    Sitara: Let Girls Dream
## 515                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 516                                                                                            Team Foxcatcher
## 517                                                                               The Ballad of Buster Scruggs
## 518                                                                    The Death and Life of Marsha P. Johnson
## 519                                                                                 The Fundamentals of Caring
## 520                                                           The Other One: The Long Strange Trip of Bob Weir
## 521                                                                                           American Factory
## 522                                                                                           Fire in Paradise
## 523                                                                                                  Long Shot
## 524                                                                                             Miss Americana
## 525                                                                                   Period. End of Sentence.
## 526                                                                              Shawn Mendes: Live in Concert
## 527                                                                                                   Shirkers
## 528                                                                                        The Black Godfather
## 529                                                                              The Irishman: In Conversation
## 530                                                                                           The Speed Cubers
## 531                                                                              They'll Love Me When I'm Dead
## 532                                                                                                        Tig
## 533                                                                Barbra: The Music, The Mem'ries, The Magic!
## 534                                                                                Blackpink: Light Up the Sky
## 535                                                                                                City of Joy
## 536                                                                                       Dick Johnson Is Dead
## 537                                                                             Homecoming: A Film by Beyonce 
## 538                                                                             Invader Zim: Enter the Florpus
## 539                                                                      Joan Didion: The Center Will Not Hold
## 540                                                                        John Mulaney & the Sack Lunch Bunch
## 541                                                                                              Reversing Roe
## 542                                                                                          The White Helmets
## 543                                                                                                  Athlete A
## 544                                                                                                       Ludo
## 545                                                                                                     Quincy
## 546                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 547                                                                                           Tell Me Who I Am
## 548                                                                                          The Bleeding Edge
## 549                                                                                         The Social Dilemma
## 550                                                                                              The Two Popes
## 551                                                                                What Happened, Miss Simone?
## 552                                                                                                 Yeh Ballet
## 553                                                                                                      Anima
## 554                                                                                        Beasts of No Nation
## 555                                                                           Brene Brown: The Call to Courage
## 556                                                                         Crip Camp: A Disability Revolution
## 557 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 558                                                                     Justin Timberlake + The Tennessee Kids
## 559                                                                                               Road to Roma
## 560                                                                                                       Roma
## 561                                                                             If Anything Happens I Love You
## 562                                                                                               The Irishman
## 563                                                                                 The Trial of the Chicago 7
## 564                                                                                              A Secret Love
## 565                                                                                                     Icarus
## 566                                                                                             Marriage Story
## 567                                                                                             The Ivory Game
## 568                                                               Struggle: The Life and Lost Art of Szukaiski
## 569                                                                                             Chasing Coral 
## 570                                                                                         My Octopus Teacher
## 571                                                                                             Rising Phoenix
## 572                                                                                                       13th
## 573                                                                          Disclosure: Trans Lives on Screen
## 574                                                                                                      Klaus
## 575                                                                                                 Seaspiracy
## 576                                                                      The Three Deaths of Marisela Escobedo
## 577                                                                                    Cuba and the Cameraman 
## 578                                                                                     Dancing with the Birds
## 579                                                                 Ben Platt: Live from Radio City Music Hall
## 580                                                                      Taylor Swift: Reputation Stadium Tour
## 581                                                                Winter on Fire: Ukraine's Fight for Freedom
## 582                                                                                    Springsteen on Broadway
## 583                                                                  Emicida: AmarElo - It's All For Yesterday
## 584                                                                   David Attenborough: A Life on Our Planet
##                                    Genre           Premiere Runtime IMDB.Score
## 1                            Documentary     August 5, 2019      58        2.5
## 2                               Thriller    August 21, 2020      81        2.6
## 3                  Science fiction/Drama  December 26, 2019      79        2.6
## 4                        Horror thriller   January 19, 2018      94        3.2
## 5                                Mystery   October 30, 2020      90        3.4
## 6                                 Action   November 1, 2019     147        3.5
## 7                                 Comedy   December 4, 2020     112        3.7
## 8                    Heist film/Thriller       June 5, 2020     149        3.7
## 9                Musical/Western/Fantasy     March 23, 2018      73        3.9
## 10                                Comedy       May 18, 2021     139        4.1
## 11                           Documentary     April 22, 2021      58        4.1
## 12                                 Drama  November 27, 2020     112        4.1
## 13                       Romantic comedy September 18, 2020      97        4.1
## 14                         Action comedy    October 1, 2020     101        4.2
## 15                              Thriller  November 22, 2016      90        4.2
## 16                           Documentary  December 19, 2019      25        4.3
## 17                      Horror anthology    January 1, 2020     144        4.3
## 18                    Political thriller  February 21, 2020     115        4.3
## 19                                Comedy    January 1, 2021     102        4.3
## 20                       Horror thriller    August 25, 2017     100        4.4
## 21                           Documentary September 13, 2019      64        4.4
## 22                              Thriller      July 18, 2019      97        4.4
## 23                                Comedy    August 16, 2019      99        4.4
## 24                              Thriller  February 26, 2021     120        4.4
## 25                      Superhero-Comedy      April 9, 2021     105        4.4
## 26                              Thriller      July 16, 2020      89        4.5
## 27                       Romantic comedy      April 2, 2021      97        4.5
## 28                                Comedy      July 31, 2020     107        4.5
## 29                                Comedy  February 10, 2021      99        4.5
## 30                                Comedy   December 7, 2018      95        4.6
## 31                           Documentary       May 24, 2019      37        4.6
## 32                                Horror   October 28, 2016      89        4.6
## 33                         Romance drama  February 22, 2019      83        4.6
## 34                                Comedy   December 3, 2019      46        4.6
## 35                                Horror   October 25, 2019      85        4.6
## 36                                Comedy      July 15, 2020      88        4.6
## 37                           Documentary      July 14, 2020      86        4.6
## 38                                 Drama  November 30, 2020     105        4.7
## 39                 Science fiction/Drama   January 18, 2019      95        4.7
## 40                                Action      March 5, 2021      80        4.7
## 41                         Anime / Short      April 2, 2020       4        4.7
## 42                                 Drama    October 2, 2020      93        4.7
## 43                             Superhero  December 25, 2020     100        4.7
## 44                              Thriller   December 4, 2020     106        4.8
## 45                                 Heist    January 6, 2017      97        4.8
## 46                              Thriller        May 1, 2020     106        4.8
## 47                                Horror   October 28, 2020     103        4.8
## 48                                Comedy   January 20, 2017      80        4.8
## 49                                Comedy     April 10, 2020     101        4.8
## 50                               Western  December 11, 2015     119        4.8
## 51                                Action     April 17, 2020      80        4.9
## 52                   Animation/Superhero    August 14, 2020      89        4.9
## 53                           Family film  November 28, 2019      94        4.9
## 54                                 Drama   October 30, 2020      93        4.9
## 55                                Comedy   January 23, 2020      96        5.0
## 56                       Action-thriller      July 13, 2018     113        5.0
## 57                                 Drama   October 15, 2020      86        5.0
## 58                              Thriller      July 15, 2016     100        5.0
## 59                       Romantic comedy  February 11, 2021     102        5.0
## 60                                Horror   October 22, 2020      86        5.1
## 61                              Thriller   January 13, 2017     104        5.1
## 62                         Action comedy      April 3, 2020      88        5.1
## 63                     Teen comedy-drama     April 20, 2018      97        5.1
## 64                        Romantic drama  February 25, 2021     105        5.1
## 65                             Animation      July 23, 2020      90        5.1
## 66                                Comedy  September 8, 2017      99        5.2
## 67                 Aftershow / Interview    August 21, 2019      10        5.2
## 68                       Romantic comedy       July 3, 2020     106        5.2
## 69                     Christmas musical  November 22, 2020      98        5.2
## 70                                Comedy      July 20, 2018      94        5.2
## 71                                 Drama  February 22, 2019     112        5.2
## 72                                Horror       May 26, 2021     117        5.2
## 73                                Comedy  February 14, 2017      70        5.2
## 74                                Comedy        May 5, 2017      81        5.2
## 75                                Comedy    October 7, 2020     103        5.2
## 76                                Comedy       May 25, 2018      94        5.2
## 77             Science fiction adventure       May 24, 2019      98        5.2
## 78                                Comedy     April 14, 2017     131        5.2
## 79                       Science fiction       May 17, 2019      87        5.2
## 80                          Variety show       May 14, 2019      60        5.2
## 81                           Documentary   February 5, 2021     112        5.2
## 82                          Comedy-drama September 13, 2019     102        5.2
## 83                                 Drama  November 27, 2020      99        5.2
## 84                                Comedy     April 27, 2018     116        5.2
## 85                       Romantic comedy  November 30, 2018      92        5.3
## 86                                Comedy    August 30, 2019      83        5.3
## 87                              Thriller     April 30, 2020      97        5.3
## 88                                 Drama    August 12, 2020     112        5.3
## 89                              Thriller       May 28, 2020     116        5.3
## 90                              Thriller  September 7, 2018     102        5.3
## 91                                Horror     April 29, 2021     121        5.3
## 92                       Romantic comedy      June 24, 2018      95        5.3
## 93                                 Drama     April 12, 2019      93        5.3
## 94                                 Drama    August 26, 2016      92        5.3
## 95                 Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 96                       Romantic comedy   December 5, 2019      85        5.4
## 97                                Comedy        May 3, 2019      78        5.4
## 98                                 Drama September 18, 2020     120        5.4
## 99                    Supernatural drama  September 2, 2020      92        5.4
## 100                        Action/Comedy     March 23, 2018     101        5.4
## 101                             Thriller      March 6, 2020     119        5.4
## 102                               Horror    October 4, 2019     101        5.4
## 103                                Drama      April 2, 2021     112        5.4
## 104                               Comedy    August 11, 2017      96        5.4
## 105               Action/Science fiction   January 15, 2021     114        5.4
## 106                      Romantic comedy  November 19, 2020      97        5.4
## 107               Romantic teenage drama       July 1, 2020     101        5.4
## 108                     Comedy / Musical   December 4, 2015      56        5.5
## 109                              Musical   October 26, 2018     100        5.5
## 110                             Thriller   December 1, 2019      94        5.5
## 111                               Comedy     April 28, 2021      94        5.5
## 112                          Documentary   October 16. 2019      21        5.5
## 113                               Comedy  November 15, 2019     104        5.5
## 114                         Variety show   February 8, 2019      63        5.5
## 115                      Romantic comedy     April 10, 2020     100        5.5
## 116              Science fiction/Mystery  February 23, 2018     126        5.5
## 117                          Crime drama    October 2, 2020     106        5.5
## 118                             Thriller  February 11, 2021      86        5.5
## 119         Psychological thriller drama     April 15, 2021     142        5.5
## 120                               Comedy   January 19, 2018     108        5.5
## 121                      Science fiction   February 4, 2018     102        5.5
## 122                      Romantic comedy  November 21, 2019      92        5.5
## 123                     Adventure/Comedy       July 6, 2018      83        5.5
## 124                         Black comedy    August 10, 2018      94        5.5
## 125                               Comedy      April 5, 2019      92        5.5
## 126                               Comedy       May 10, 2019     103        5.5
## 127                         Black comedy   October 12, 2017      89        5.6
## 128                               Comedy       July 7, 2016      95        5.6
## 129                         Comedy-drama   January 15, 2021     103        5.6
## 130                      Romantic comedy    August 29, 2019      97        5.6
## 131                             Thriller September 28, 2018     125        5.6
## 132                      Romantic comedy  September 3, 2020      91        5.6
## 133                              Romance      June 19, 2020      90        5.6
## 134                         Variety show   October 27, 2020      49        5.6
## 135                         Comedy-drama   January 11, 2019      98        5.6
## 136                       Romantic drama   February 5, 2021     107        5.6
## 137                      Science fiction  December 23, 2020     118        5.6
## 138                             Thriller September 16, 2020      94        5.6
## 139                               Comedy    August 21, 2020     103        5.6
## 140                        Horror comedy    October 2, 2020      86        5.6
## 141                          Documentary     April 14, 2021      83        5.6
## 142                    Christian musical     March 26, 2021      97        5.7
## 143                  Romantic teen drama     March 25, 2021      99        5.7
## 144                       Romantic drama  December 15, 2017     104        5.7
## 145                               Family September 11, 2020     102        5.7
## 146                          Dark comedy   December 8, 2017      89        5.7
## 147                               Horror   October 18, 2019      98        5.7
## 148                      Romantic comedy    October 9, 2020     125        5.7
## 149                                Drama       May 16, 2019      89        5.7
## 150                               Comedy    January 4, 2019      94        5.7
## 151                        Comedy horror  September 1, 2017      94        5.7
## 152                          Documentary      June 18, 2020      85        5.7
## 153                          Documentary  December 12, 2018      34        5.7
## 154                               Action      July 12, 2019      86        5.7
## 155                             Thriller     April 14, 2021      91        5.7
## 156                        Action comedy       May 27, 2016     108        5.7
## 157                      Romantic comedy   November 2, 2018      95        5.7
## 158               Psychological thriller       May 14, 2021     100        5.7
## 159                               Comedy       May 13, 2020      90        5.7
## 160                             Thriller   February 1, 2019     112        5.7
## 161                               Comedy     March 12, 2021      86        5.7
## 162                         Comedy-drama     March 29, 2019     124        5.8
## 163                      Romantic comedy  December 14, 2020     107        5.8
## 164                      Romantic comedy  November 17, 2017      92        5.8
## 165                                Drama        May 1, 2020     121        5.8
## 166                                Drama   November 1, 2019      90        5.8
## 167                               Biopic  December 16, 2016     104        5.8
## 168                               Comedy     April 27, 2018      92        5.8
## 169                                Drama       June 5, 2020     114        5.8
## 170                                Drama    August 21, 2020      98        5.8
## 171             Science fiction/Thriller      July 27, 2018      95        5.8
## 172                      Romantic comedy     March 30, 2018      78        5.8
## 173                             Thriller       May 14, 2021     107        5.8
## 174                      Romantic comedy   November 8, 2019      92        5.8
## 175                         Mockumentary   October 13, 2016      95        5.8
## 176                      Romantic comedy   November 5, 2020      96        5.8
## 177                         Comedy-drama  November 30, 2018     118        5.8
## 178                      Romantic comedy     April 30, 2020     105        5.8
## 179                               Satire     April 17, 2020      94        5.8
## 180                         One-man show     April 28, 2017      52        5.8
## 181                Romantic comedy-drama  September 7, 2018     105        5.8
## 182                          Dark comedy     April 28, 2017      95        5.8
## 183                               Satire     April 29, 2016     100        5.8
## 184             Science fiction/Thriller      June 29, 2018      97        5.8
## 185                               Comedy    August 24, 2018      89        5.8
## 186                        Comedy/Horror September 10, 2020     102        5.8
## 187                              Fantasy   December 7, 2020      96        5.8
## 188                      Romantic comedy      July 24, 2020     131        5.8
## 189                      Romantic comedy     April 12, 2019      89        5.8
## 190                                Drama  November 11, 2020      93        5.8
## 191                      Romantic comedy    October 2, 2020     111        5.8
## 192                                Drama      April 6, 2018      75        5.9
## 193                             Thriller   January 17, 2020     120        5.9
## 194                         Sports-drama      April 6, 2018      96        5.9
## 195                         Zombie/Heist       May 21, 2021     148        5.9
## 196                 Psychological horror  November 16, 2018      94        5.9
## 197                              Mystery  November 15, 2019     107        5.9
## 198                         Mockumentary      July 16, 2019      32        5.9
## 199                                Drama   February 7, 2020     104        5.9
## 200                          Documentary September 28, 2018      23        5.9
## 201                      Romantic comedy     March 27, 2020     111        5.9
## 202                             Thriller     March 27, 2020      83        5.9
## 203                          Documentary    January 1, 2021      53        5.9
## 204                         Comedy-drama   January 12, 2018      95        5.9
## 205                              Musical  December 11, 2020     132        5.9
## 206                        Action comedy  November 11, 2016      98        5.9
## 207                          Sports film     March 20, 2020     108        5.9
## 208                               Biopic     April 13, 2018     106        6.0
## 209                                Drama        May 4, 2018     104        6.0
## 210             Science fiction/Thriller   January 27, 2017      90        6.0
## 211                                Drama     August 9, 2019     106        6.0
## 212                                Drama      March 8, 2019      90        6.0
## 213                       Comedy mystery      June 14, 2019      97        6.0
## 214                            Superhero    August 14, 2020     113        6.0
## 215                    Romantic thriller   October 21, 2020     123        6.0
## 216                     Christmas comedy  November 25, 2020     115        6.0
## 217                      Romantic comedy       May 11, 2018     105        6.0
## 218                      Romantic comedy  November 16, 2018     101        6.0
## 219                      Romantic comedy  February 12, 2020     102        6.0
## 220                           War-Comedy       May 26, 2017     122        6.0
## 221                               Action  December 13, 2019     128        6.1
## 222                               Comedy September 20, 2019      82        6.1
## 223                                Drama     March 10, 2017     102        6.1
## 224                          Documentary     April 28, 2017      80        6.1
## 225                                Drama     March 17, 2017      94        6.1
## 226                               Family   January 29, 2021     123        6.1
## 227              Romantic comedy/Holiday   October 28, 2020     104        6.1
## 228                    Adventure-romance   November 1, 2019      85        6.1
## 229                          Documentary       May 29, 2015      84        6.1
## 230                               Comedy     August 3, 2018     103        6.1
## 231                          Crime drama     March 13, 2020      95        6.1
## 232                               Comedy     August 2, 2019     100        6.1
## 233                            Adventure     March 18, 2016      89        6.1
## 234                          Crime drama   October 30, 2020     116        6.1
## 235                               Biopic     April 17, 2020     118        6.1
## 236                                Drama    January 8, 2021      96        6.1
## 237                                Drama      April 1, 2021     114        6.1
## 238                              Western  November 10, 2017      99        6.1
## 239                      Romantic comedy       May 22, 2020      87        6.1
## 240                               Biopic     March 24, 2017      92        6.1
## 241                      Horror-thriller       May 24, 2019      90        6.1
## 242                                Drama   January 15, 2021      95        6.1
## 243                             Thriller    August 28, 2020      96        6.1
## 244                         Dance comedy     August 7, 2020      93        6.1
## 245                          Stop Motion  November 20, 2020      42        6.2
## 246                               Biopic       May 26, 2021      92        6.2
## 247                                Drama   January 29, 2021     106        6.2
## 248                                Drama   November 6, 2020     151        6.2
## 249                         Comedy-drama    August 17, 2020     101        6.2
## 250                               Comedy      April 9, 2021     114        6.2
## 251                         Sports-drama   February 8, 2019      90        6.2
## 252                             Thriller September 27, 2019     115        6.2
## 253                             Thriller      June 19, 2020      92        6.2
## 254                            Animation    August 14, 2020      72        6.2
## 255                             Thriller      July 24, 2020     139        6.2
## 256                               Biopic     March 23, 2018      98        6.2
## 257                      Romantic comedy     April 19, 2019      92        6.2
## 258                        Action comedy      March 6, 2020     111        6.2
## 259                                Drama September 14, 2018      98        6.2
## 260                          Documentary     April 27, 2018     104        6.2
## 261                          Documentary   December 1, 2017      95        6.2
## 262                               Comedy      April 7, 2017      88        6.2
## 263                   Horror/Crime drama   October 20, 2017     102        6.3
## 264                          Documentary       May 22, 2019      30        6.3
## 265                      Romantic comedy       June 8, 2018      99        6.3
## 266                      Horror-thriller   October 12, 2018     129        6.3
## 267                          Family film     March 16, 2018      87        6.3
## 268                        Urban fantasy  December 22, 2017     117        6.3
## 269                         Drama/Horror       May 18, 2018     104        6.3
## 270                                Drama      April 2, 2021     111        6.3
## 271                  Family/Comedy-drama      June 19, 2020     107        6.3
## 272                               Comedy     March 18, 2021      97        6.3
## 273                      Romantic comedy     April 13, 2018      98        6.3
## 274                                Drama   January 28, 2021      90        6.3
## 275                                Drama     April 19, 2019     101        6.3
## 276                          Documentary       May 26, 2021      72        6.3
## 277                                Drama  November 24, 2020      83        6.3
## 278                               Action   January 25, 2019     118        6.3
## 279                               Comedy  December 21, 2018      44        6.3
## 280                                  War     April 21, 2017     113        6.3
## 281                       Crime thriller       June 9, 2017      86        6.3
## 282               Science fiction/Action   December 9, 2016     108        6.3
## 283                   Teen comedy horror   October 13, 2017      85        6.3
## 284                Science fiction/Drama     March 31, 2017     102        6.3
## 285                                Drama   October 11, 2019     151        6.3
## 286                         Comedy-drama   October 18, 2019      98        6.3
## 287                          Documentary     March 29, 2019      87        6.3
## 288                          Crime drama      March 9, 2018     120        6.3
## 289                             Thriller     April 23, 2020     134        6.3
## 290                      Romantic comedy  February 12, 2021     109        6.3
## 291                          Documentary    August 28, 2019      85        6.3
## 292                                Drama     March 27, 2020     103        6.3
## 293                          Documentary     August 5, 2020      94        6.4
## 294                         Concert Film  December 21, 2020      97        6.4
## 295             Science fiction/Thriller September 16, 2016      88        6.4
## 296                          Documentary September 25, 2019      37        6.4
## 297                       Musical comedy  December 24, 2019     112        6.4
## 298                         Sports-drama     March 30, 2018     102        6.4
## 299                             Thriller   October 11, 2019     100        6.4
## 300                                Drama  February 16, 2018      96        6.4
## 301                      Romantic comedy  February 14, 2020     113        6.4
## 302                          Documentary    August 20, 2020      16        6.4
## 303                       Romantic drama  February 11, 2021     119        6.4
## 304                          Documentary     April 29, 2020      97        6.4
## 305                          Documentary  December 13, 2014      81        6.4
## 306                         Comedy-drama September 21, 2018      98        6.4
## 307          Animation/Musical/Adventure   October 23, 2020      95        6.4
## 308                                Drama   October 12, 2019      96        6.4
## 309                          Documentary September 15. 2017     107        6.4
## 310                 Animation / Musicial September 27, 2019      41        6.4
## 311                          Documentary     March 16, 2018      87        6.4
## 312                         Comedy-drama   January 14, 2021     101        6.4
## 313                          Documentary        May 5, 2017      97        6.4
## 314                             Thriller     March 25, 2020     103        6.4
## 315           Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 316                      Action-thriller     March 13, 2019     125        6.4
## 317                          Documentary September 28, 2018     116        6.4
## 318                                Drama      March 8, 2019      99        6.4
## 319                      Action thriller   October 20, 2017      82        6.4
## 320                      Romantic comedy   February 9, 2018      97        6.4
## 321                          Documentary   October 28, 2019      28        6.5
## 322                              Romance  February 28, 2020     108        6.5
## 323                                Drama    August 28, 2020      93        6.5
## 324                Anime/Science fiction     March 19, 2020      74        6.5
## 325                          Documentary     March 21, 2019      60        6.5
## 326                    Animation / Short  December 11, 2020       9        6.5
## 327                          Documentary     April 17, 2021      21        6.5
## 328                               Comedy       May 31, 2019     100        6.5
## 329                            War drama      June 12, 2020     155        6.5
## 330                          Documentary      April 7, 2021      55        6.5
## 331                       Musical comedy      June 26, 2020     123        6.5
## 332                      Horror thriller September 29, 2017     103        6.5
## 333                             Thriller   October 30, 2020      93        6.5
## 334             Family/Christmas musical  November 13, 2020     119        6.5
## 335                          Documentary      June 14, 2019      40        6.5
## 336                                Drama      June 15, 2018     120        6.5
## 337                                Drama        May 7, 2021      98        6.5
## 338                            Adventure   December 7, 2018     104        6.5
## 339                                Drama      June 24, 2020      91        6.5
## 340                          Documentary      June 23, 2017      95        6.5
## 341             Science fiction thriller       May 12, 2021     101        6.5
## 342                      Romantic comedy      June 15, 2018     105        6.5
## 343                               Comedy      July 28, 2017      83        6.5
## 344                                Drama     April 10, 2020      91        6.5
## 345                              Romance     April 21, 2017      83        6.5
## 346                        Drama / Short   January 20, 2020      17        6.5
## 347           Hidden-camera prank comedy     March 26, 2021      86        6.6
## 348               Psychological thriller  December 21, 2018     124        6.6
## 349                               Horror      June 24, 2020      94        6.6
## 350                      Romantic comedy  February 26, 2021     102        6.6
## 351                              Romance       June 7, 2019     118        6.6
## 352                          Documentary    August 19, 2016      79        6.6
## 353               Psychological thriller  September 4, 2020     134        6.6
## 354                          Documentary   October 25, 2019     126        6.6
## 355                                Drama        May 7, 2021      98        6.6
## 356                          Documentary      June 29, 2018      89        6.6
## 357                          Documentary   December 7, 2018      58        6.6
## 358                          Documentary  November 23, 2020      83        6.6
## 359                      Science fiction   February 5, 2021     136        6.6
## 360                          Documentary   December 7, 2018      98        6.6
## 361                         Spy thriller September 14, 2018     114        6.6
## 362                          Crime drama    August 20, 2020      99        6.6
## 363                         Spy thriller      July 31, 2019     130        6.6
## 364                          Documentary   January 15, 2021      32        6.6
## 365                        Anime/Fantasy      June 18, 2020     104        6.7
## 366                                Drama     April 16, 2021     142        6.7
## 367              Animated musical comedy     April 16, 2021      92        6.7
## 368                          Documentary  November 20, 2019      86        6.7
## 369                Anime/Science fiction       May 20, 2017     106        6.7
## 370                                Drama       May 27, 2021      95        6.7
## 371                          Documentary      June 16, 2017      91        6.7
## 372                          Documentary   January 11, 2021      89        6.7
## 373                               Action     April 24, 2020     117        6.7
## 374                          Documentary  December 11, 2020      90        6.7
## 375                                Drama  November 24, 2020     117        6.7
## 376                          Documentary September 15, 2020      80        6.7
## 377                                Drama   February 3, 2017      87        6.7
## 378                               Comedy   December 3, 2020     101        6.7
## 379                          Documentary   October 28, 2019      19        6.7
## 380                       Romantic drama   February 5, 2021     106        6.7
## 381                         Variety Show   February 7, 2017      54        6.7
## 382                                Drama      March 3, 2021     111        6.7
## 383                                Drama      April 9, 2021     132        6.7
## 384                                Drama     March 12, 2021      97        6.7
## 385                          Documentary      July 10, 2019     106        6.7
## 386                         Comedy-drama      July 29, 2016     111        6.7
## 387                     Superhero/Action      July 10, 2020     124        6.7
## 388                          Documentary      July 15. 2016     116        6.7
## 389                                Drama   October 18, 2019     112        6.7
## 390                                Drama   October 10, 2018     144        6.8
## 391                                Drama   October 28, 2016      76        6.8
## 392                  Biographical/Comedy   January 26, 2018     101        6.8
## 393                          Documentary     March 20, 2020      92        6.8
## 394                          Documentary September 21, 2020      19        6.8
## 395                          Documentary        May 3, 2019      39        6.8
## 396                      Romantic comedy       May 31, 2019     102        6.8
## 397                          Documentary        May 6, 2020      89        6.8
## 398                               Comedy     August 3, 2018     105        6.8
## 399                             Thriller      June 29, 2018     101        6.8
## 400                               Comedy  December 27, 2020      70        6.8
## 401                          Documentary September 17, 2020      96        6.8
## 402                          Documentary       May 11, 2020      85        6.8
## 403                          Documentary September 12, 2017      39        6.8
## 404                          Documentary     April 20, 2018      79        6.8
## 405                          Documentary  November 21, 2017      73        6.8
## 406                                Drama    October 2, 2020     114        6.8
## 407                                Drama September 30, 2020     121        6.8
## 408                Aftershow / Interview September 30, 2020      28        6.8
## 409                                Drama  November 13, 2020      95        6.8
## 410                                Drama   November 2, 2018     122        6.8
## 411                          Documentary   February 9, 2018      23        6.8
## 412                                Drama      July 14, 2017     107        6.8
## 413                          Documentary    January 6, 2021      98        6.8
## 414                             Thriller  December 24, 2020     108        6.9
## 415                          Documentary September 30, 2016      92        6.9
## 416                          Documentary    October 8, 2020     100        6.9
## 417                          Documentary      March 1, 2021      97        6.9
## 418                    Animation / Short  December 28, 2020       7        6.9
## 419                                Drama  February 24, 2017      96        6.9
## 420                          Documentary       May 19, 2017     100        6.9
## 421                               Biopic   December 4, 2020     132        6.9
## 422                              Romance September 29, 2017     103        6.9
## 423                      Historical-epic   November 9, 2018     121        6.9
## 424                         Comedy-drama     March 26, 2021     114        6.9
## 425                          Documentary   October 12, 2018      57        6.9
## 426                          Documentary   February 9, 2018      95        6.9
## 427                          Documentary       June 3, 2020      83        6.9
## 428                          Documentary      July 10, 2020      17        6.9
## 429                              Romance        May 1, 2020     105        6.9
## 430                          Crime drama     March 29, 2019     131        6.9
## 431                     Comedy / Musical       May 23, 2019      30        6.9
## 432                         Comedy-drama   October 13, 2017     112        6.9
## 433                          Documentary   October 12, 2018      86        7.0
## 434                          Documentary September 22, 2017     100        7.0
## 435                Aftershow / Interview   November 3, 2020      14        7.0
## 436                          Documentary   October 13, 2017     109        7.0
## 437                          Documentary  November 20, 2019      28        7.0
## 438                          Documentary September 15, 2019      64        7.0
## 439                                Drama  December 18, 2020      94        7.0
## 440                Aftershow / Interview  December 18, 2020      31        7.0
## 441                          Documentary     March 17, 2021      99        7.0
## 442                          Documentary  February 23, 2021     108        7.0
## 443                          Documentary     April 26, 2019      48        7.0
## 444                          Documentary       May 17, 2019      84        7.0
## 445                          Documentary     March 22, 2019      70        7.0
## 446                          Documentary  September 1, 2017      27        7.0
## 447                   Animation / Comedy     August 9, 2019      45        7.0
## 448                               Comedy   December 9, 2020     117        7.0
## 449   Christmas/Fantasy/Adventure/Comedy  November 22, 2018     104        7.0
## 450                               Biopic     March 22, 2019     108        7.0
## 451                      Action-thriller   October 19, 2018     121        7.0
## 452                Aftershow / Interview   January 26, 2017      36        7.1
## 453                            Animation  November 30, 2018      30        7.1
## 454                            Animation   December 1, 2020      47        7.1
## 455                                Drama      June 19, 2019     110        7.1
## 456                          Documentary     April 22, 2020      92        7.1
## 457                          Documentary  November 27, 2020      80        7.1
## 458                    Mentalism special   October 19, 2018      49        7.1
## 459                          Documentary  December 27, 2019      73        7.1
## 460                          Documentary        May 4, 2018      40        7.1
## 461                          Documentary September 10, 2019      96        7.1
## 462                          Crime drama       May 14, 2021     106        7.1
## 463                          Documentary     April 20, 2019      97        7.1
## 464                          Documentary   October 27, 2020      94        7.1
## 465                          Documentary       May 26, 2017      78        7.1
## 466                          Documentary September 18, 2015      81        7.1
## 467                          Documentary        May 1, 2019      87        7.1
## 468                         One-man show  November 13, 2018      91        7.1
## 469                          Documentary     March 18, 2016      91        7.1
## 470                          Documentary   October 20, 2017      95        7.1
## 471                                Drama    January 7, 2021     126        7.1
## 472                          Documentary      April 6, 2018      31        7.1
## 473                          Documentary   November 2, 2018      58        7.1
## 474                          Documentary   October 15, 2020      41        7.1
## 475               Psychological thriller September 16, 2020     138        7.1
## 476                                Drama   January 29, 2021     112        7.1
## 477                          Documentary      July 24, 2019     114        7.1
## 478                                Drama   January 22, 2021     125        7.1
## 479                      Romantic comedy    August 17, 2018      99        7.1
## 480                          Documentary September 30, 2020      82        7.2
## 481                          Documentary September 23, 2016      98        7.2
## 482                                Drama September 15, 2017     136        7.2
## 483                          Documentary   January 18, 2019      97        7.2
## 484                          Documentary   October 28, 2016     107        7.2
## 485                          Documentary     April 10, 2020      92        7.2
## 486                          Documentary      March 8, 2018      39        7.2
## 487                      Romantic comedy  February 14, 2018     133        7.2
## 488                         Drama-Comedy  February 22, 2019      89        7.2
## 489                                Drama    October 5, 2018     124        7.2
## 490           Coming-of-age comedy-drama   October 18, 2019      99        7.2
## 491                                Drama        May 1, 2018     101        7.2
## 492                          Crime drama   January 18, 2019      97        7.2
## 493                               Comedy    October 9, 2020     124        7.2
## 494                                Drama     April 30, 2021     129        7.2
## 495                          Documentary      June 19, 2019     121        7.2
## 496                     Historical drama   November 1, 2019     140        7.2
## 497                            Making-of   October 29, 2019      13        7.2
## 498                                  War    October 7, 2016     108        7.2
## 499                          Documentary    August 10, 2018      11        7.2
## 500                               Biopic   October 25, 2019     118        7.3
## 501                          Crime drama   October 11, 2019     121        7.3
## 502                          Documentary September 13, 2016      24        7.3
## 503                          Documentary      July 17, 2020     100        7.3
## 504                          Documentary       May 12, 2017     101        7.3
## 505                                Drama       May 27, 2020     105        7.3
## 506                          Documentary       July 8, 2020      96        7.3
## 507                            Animation   October 13, 2020      47        7.3
## 508                     Action-adventure      June 28, 2017     121        7.3
## 509                          Crime drama September 12, 2018     100        7.3
## 510                             Thriller      July 31, 2020     149        7.3
## 511                          Documentary   January 11, 2019      64        7.3
## 512                          Documentary   February 8, 2019      64        7.3
## 513                          Documentary   October 28, 2020     114        7.3
## 514                    Animation / Short      March 8, 2020      15        7.3
## 515                          Documentary   October 14, 2016      79        7.3
## 516                          Documentary     April 29, 2016      90        7.3
## 517                              Western  November 16, 2018     132        7.3
## 518                          Documentary    October 6, 2017     105        7.3
## 519                         Comedy-drama      June 24, 2016      97        7.3
## 520                          Documentary       May 22, 2015      83        7.3
## 521                          Documentary    August 21, 2019     110        7.4
## 522                          Documentary   November 1, 2019      39        7.4
## 523                          Documentary September 29, 2017      40        7.4
## 524                          Documentary   January 31, 2020      85        7.4
## 525                          Documentary  February 12, 2019      26        7.4
## 526                         Concert Film  November 25, 2020      87        7.4
## 527                          Documentary   October 26, 2018      97        7.4
## 528                          Documentary       June 7, 2019     118        7.4
## 529                Aftershow / Interview  November 27, 2019      23        7.4
## 530                          Documentary      July 29, 2020      40        7.4
## 531                          Documentary   November 2, 2018      98        7.4
## 532                          Documentary      July 17, 2015      80        7.4
## 533                         Concert Film  November 22, 2017     108        7.5
## 534                          Documentary   October 14, 2020      79        7.5
## 535                          Documentary  September 7, 2018      74        7.5
## 536                          Documentary    October 2, 2020      90        7.5
## 537                          Documentary     April 17, 2019     137        7.5
## 538          Animation / Science Fiction    August 16, 2019      71        7.5
## 539                          Documentary   October 27. 2017      98        7.5
## 540                         Variety show  December 24, 2019      70        7.5
## 541                          Documentary September 13, 2018      99        7.5
## 542                          Documentary September 16. 2016      40        7.5
## 543                          Documentary      June 24, 2020     104        7.6
## 544                Anthology/Dark comedy  November 12, 2020     149        7.6
## 545                          Documentary September 21, 2018     124        7.6
## 546                          Documentary      June 12, 2019     144        7.6
## 547                          Documentary   October 18, 2019      85        7.6
## 548                          Documentary      July 27, 2018     100        7.6
## 549                          Documentary  September 9, 2020      94        7.6
## 550                                Drama  December 20, 2019     125        7.6
## 551                          Documentary      June 26, 2015      84        7.6
## 552                                Drama  February 21, 2020     117        7.6
## 553                      Musical / Short      June 27, 2019      15        7.7
## 554                            War drama   October 16, 2015     136        7.7
## 555                          Documentary     April 19, 2019      76        7.7
## 556                          Documentary     March 25, 2020     108        7.7
## 557                          Documentary  November 17, 2017      94        7.7
## 558                         Concert Film   October 12, 2016      90        7.7
## 559                            Making-of  February 11, 2020      72        7.7
## 560                                Drama  December 14, 2018     135        7.7
## 561                    Animation / Short  November 20, 2020      12        7.8
## 562                          Crime drama  November 27, 2019     209        7.8
## 563                                Drama   October 16, 2020     130        7.8
## 564                          Documentary     April 29, 2020      82        7.9
## 565                          Documentary     August 4, 2017     120        7.9
## 566                                Drama   December 6, 2019     136        7.9
## 567                          Documentary   November 4, 2016     112        7.9
## 568                          Documentary  December 21, 2018     105        8.0
## 569                          Documentary      July 14, 2017      89        8.1
## 570                          Documentary  September 7, 2020      85        8.1
## 571                          Documentary    August 26, 2020     106        8.1
## 572                          Documentary    October 7, 2016     100        8.2
## 573                          Documentary      June 19, 2020     107        8.2
## 574 Animation/Christmas/Comedy/Adventure  November 15, 2019      97        8.2
## 575                          Documentary     March 24, 2021      89        8.2
## 576                          Documentary   October 14, 2020     109        8.2
## 577                          Documentary  November 24, 2017     114        8.3
## 578                          Documentary   October 23, 2019      51        8.3
## 579                         Concert Film       May 20, 2020      85        8.4
## 580                         Concert Film  December 31, 2018     125        8.4
## 581                          Documentary    October 9, 2015      91        8.4
## 582                         One-man show  December 16, 2018     153        8.5
## 583                          Documentary   December 8, 2020      89        8.6
## 584                          Documentary    October 4, 2020      83        9.0
##                       Language
## 1             English/Japanese
## 2                      Spanish
## 3                      Italian
## 4                      English
## 5                        Hindi
## 6                        Hindi
## 7                      Turkish
## 8                      English
## 9                      English
## 10                       Hindi
## 11                     English
## 12                      Korean
## 13                  Indonesian
## 14                       Malay
## 15                     English
## 16                     Spanish
## 17                       Hindi
## 18                     English
## 19                      Korean
## 20                     English
## 21                     English
## 22                     English
## 23                     English
## 24                       Hindi
## 25                     English
## 26                     English
## 27                       Dutch
## 28                     English
## 29                      French
## 30                     Italian
## 31             English/Spanish
## 32                     English
## 33                      French
## 34                  Portuguese
## 35                     English
## 36                     Italian
## 37                      French
## 38                    Filipino
## 39                     English
## 40                      French
## 41                     English
## 42                     Italian
## 43                     English
## 44                      German
## 45                     English
## 46                       Hindi
## 47                      Polish
## 48                     English
## 49                     English
## 50                     English
## 51                      French
## 52                     English
## 53                     English
## 54                     Spanish
## 55                  Portuguese
## 56                     English
## 57                  Indonesian
## 58                     English
## 59                      Polish
## 60                   Norwegian
## 61                     English
## 62                     English
## 63                     English
## 64                  Indonesian
## 65                     English
## 66                     English
## 67                     English
## 68                     English
## 69                     English
## 70                     English
## 71                     Marathi
## 72                        Thai
## 73                     English
## 74                     English
## 75                     English
## 76                     English
## 77                     English
## 78                     English
## 79                     English
## 80                     English
## 81                     English
## 82                     English
## 83                     Italian
## 84                     English
## 85                     English
## 86                      French
## 87                     English
## 88                       Hindi
## 89                     Spanish
## 90                      French
## 91                     English
## 92                      French
## 93                     Spanish
## 94                     English
## 95                     English
## 96                     English
## 97                     Spanish
## 98                       Hindi
## 99                      German
## 100                    English
## 101                      Hindi
## 102                    English
## 103                     French
## 104                    English
## 105                    English
## 106                    English
## 107                    Italian
## 108                    English
## 109                    English
## 110                   Filipino
## 111                 Portuguese
## 112                    English
## 113                      Hindi
## 114                    English
## 115                    English
## 116                    English
## 117                    English
## 118                    Swedish
## 119                   Japanese
## 120                    English
## 121                    English
## 122                    English
## 123                    English
## 124                    English
## 125                    English
## 126                    English
## 127             Spanish/Basque
## 128                    English
## 129                 Portuguese
## 130                    English
## 131                    English
## 132                    English
## 133                    Turkish
## 134                    English
## 135                    English
## 136                    Italian
## 137                    English
## 138                    Spanish
## 139                    English
## 140                    English
## 141                    English
## 142                    English
## 143                    Italian
## 144                    English
## 145                    Spanish
## 146                    English
## 147                    English
## 148                      Hindi
## 149                    English
## 150                    English
## 151                    English
## 152                       Thai
## 153                    English
## 154                    English
## 155                     Polish
## 156                    English
## 157                    English
## 158                    English
## 159                    English
## 160                    English
## 161                    English
## 162                    Marathi
## 163                    English
## 164                    English
## 165                    English
## 166                    English
## 167                    English
## 168                    English
## 169                      Hindi
## 170                      Hindi
## 171                    English
## 172                    English
## 173                    English
## 174                    English
## 175                    English
## 176                    English
## 177                      Hindi
## 178                 Portuguese
## 179                     German
## 180                    English
## 181                    English
## 182                    English
## 183                    English
## 184                    English
## 185                    English
## 186                    English
## 187                      Dutch
## 188                    English
## 189                    English
## 190                     German
## 191                    Spanish
## 192                    English
## 193                    English
## 194                    English
## 195                    English
## 196                    English
## 197                    English
## 198                    English
## 199                    English
## 200                    English
## 201                      Hindi
## 202                     French
## 203                    English
## 204                    English
## 205                    English
## 206                    English
## 207                    Italian
## 208                    English
## 209                    Italian
## 210                    English
## 211                      Hindi
## 212                    English
## 213                    English
## 214                    English
## 215                    English
## 216                    English
## 217                    English
## 218                    English
## 219                    English
## 220                    English
## 221                    English
## 222                    English
## 223                    English
## 224                    English
## 225                    English
## 226                    English
## 227                    English
## 228                    English
## 229                    English
## 230                    English
## 231                    English
## 232                    English
## 233                    English
## 234                     French
## 235                    English
## 236                    Turkish
## 237                 Indonesian
## 238                 Portuguese
## 239                    English
## 240                    English
## 241                    English
## 242                      Hindi
## 243                    Spanish
## 244                    English
## 245                    English
## 246                    Italian
## 247                    Spanish
## 248                    English
## 249                 Indonesian
## 250                    Turkish
## 251                    English
## 252                    English
## 253                     French
## 254                    English
## 255                    Spanish
## 256                    English
## 257                    English
## 258                    English
## 259                    English
## 260                    English
## 261                    English
## 262                    English
## 263                    English
## 264            English/Spanish
## 265                    English
## 266                    English
## 267                    English
## 268                    English
## 269                    English
## 270                    English
## 271                    English
## 272                 Portuguese
## 273                     French
## 274                 Indonesian
## 275                      Hindi
## 276                    English
## 277                    Spanish
## 278                    English
## 279                 Portuguese
## 280                    English
## 281                    English
## 282                    English
## 283                    English
## 284                    English
## 285                   Japanese
## 286                    English
## 287                    English
## 288           English/Japanese
## 289                     Korean
## 290                    English
## 291                    English
## 292                    English
## 293                     French
## 294                    English
## 295                    English
## 296            English/Spanish
## 297                    Spanish
## 298                    English
## 299                    English
## 300                    English
## 301                     German
## 302                    English
## 303                 Indonesian
## 304                    English
## 305                    English
## 306                    English
## 307                    English
## 308                     French
## 309                    English
## 310                    English
## 311                    English
## 312                 Indonesian
## 313                    English
## 314                    Spanish
## 315                    English
## 316                    English
## 317            Spanish/Catalan
## 318                    English
## 319                    English
## 320                    English
## 321            English/Spanish
## 322                    English
## 323                    English
## 324                   Japanese
## 325                     French
## 326                    English
## 327                    English
## 328                      Hindi
## 329                    English
## 330                    English
## 331                    English
## 332                    English
## 333                    English
## 334                    English
## 335            English/Swedish
## 336                      Hindi
## 337                    English
## 338                    English
## 339                    Spanish
## 340                    English
## 341                     French
## 342                    English
## 343                    English
## 344 English/Taiwanese/Mandarin
## 345                    English
## 346                    English
## 347                    English
## 348                    English
## 349                      Hindi
## 350                    Spanish
## 351                    Spanish
## 352                    English
## 353                    English
## 354                    English
## 355                      Hindi
## 356                    English
## 357                    English
## 358                    English
## 359                     Korean
## 360                    English
## 361                    English
## 362                    Spanish
## 363                    English
## 364                    English
## 365                   Japanese
## 366                      Hindi
## 367                    English
## 368                    English
## 369                   Japanese
## 370                    English
## 371                    English
## 372                    English
## 373                    English
## 374                    English
## 375                    English
## 376               Thia/English
## 377                    English
## 378                 Portuguese
## 379                   Japanese
## 380                    English
## 381                    English
## 382                    English
## 383                     Korean
## 384                    Turkish
## 385                    Spanish
## 386                    English
## 387                    English
## 388                    English
## 389                      Hindi
## 390                    English
## 391                    Spanish
## 392                    English
## 393                    Spanish
## 394                    English
## 395           English/Mandarin
## 396                    English
## 397                    English
## 398                      Hindi
## 399                    English
## 400                    English
## 401                     French
## 402                    English
## 403                    English
## 404                    English
## 405                    English
## 406                      Hindi
## 407                    English
## 408                    English
## 409                    Italian
## 410                    English
## 411                   Georgian
## 412                    English
## 413                     French
## 414                      Hindi
## 415                    English
## 416                     French
## 417                    English
## 418                    English
## 419                    English
## 420                 Portuguese
## 421                    English
## 422                    English
## 423                    English
## 424                      Hindi
## 425                    English
## 426                    English
## 427                    English
## 428                    English
## 429                    English
## 430                    English
## 431                    English
## 432                    English
## 433                    English
## 434                    English
## 435                    English
## 436                    English
## 437                    Spanish
## 438                    Spanish
## 439                    English
## 440                    English
## 441                    English
## 442                    English
## 443                    English
## 444                    English
## 445                    English
## 446                    English
## 447                    English
## 448                    Italian
## 449                    English
## 450                    English
## 451                 Indonesian
## 452                    English
## 453                    English
## 454                    English
## 455                    English
## 456                    English
## 457                    English
## 458                    English
## 459                    Spanish
## 460                    English
## 461                    English
## 462                      Dutch
## 463                    English
## 464                    Spanish
## 465                    English
## 466                    English
## 467                    English
## 468                    English
## 469                    English
## 470                    English
## 471                    English
## 472                    English
## 473                    English
## 474                    Bengali
## 475                    English
## 476                    English
## 477                    English
## 478                    English
## 479                    English
## 480                    English
## 481                    English
## 482       Khmer/English/French
## 483                    English
## 484                    English
## 485                    English
## 486              English/Hindi
## 487                      Hindi
## 488                    English
## 489                    English
## 490                    Spanish
## 491                      Tamil
## 492                      Hindi
## 493                    English
## 494                    Marathi
## 495                 Portuguese
## 496                    English
## 497                    English
## 498                    English
## 499                    English
## 500                    English
## 501                    English
## 502                    English
## 503                    English
## 504                    English
## 505                    Spanish
## 506            Spanish/English
## 507                    English
## 508             English/Korean
## 509                    Italian
## 510                      Hindi
## 511            English/Spanish
## 512                    English
## 513             English/Arabic
## 514                    English
## 515           English/Mandarin
## 516            English/Russian
## 517                    English
## 518                    English
## 519                    English
## 520                    English
## 521                    English
## 522                    English
## 523                    English
## 524                    English
## 525              English/Hindi
## 526                    English
## 527                    English
## 528                    English
## 529                    English
## 530                    English
## 531                    English
## 532                    English
## 533                    English
## 534                     Korean
## 535                    English
## 536                    English
## 537                    English
## 538                    English
## 539                    English
## 540                    English
## 541                    English
## 542                    English
## 543                    English
## 544                      Hindi
## 545                    English
## 546                    English
## 547                    English
## 548                    English
## 549                    English
## 550                    English
## 551                    English
## 552                      Hindi
## 553                    English
## 554               English/Akan
## 555                    English
## 556                    English
## 557                    English
## 558                    English
## 559                    Spanish
## 560                    Spanish
## 561                    English
## 562                    English
## 563                    English
## 564                    English
## 565                    English
## 566                    English
## 567                    English
## 568                    English
## 569                    English
## 570                    English
## 571                    English
## 572                    English
## 573                    English
## 574                    English
## 575                    English
## 576                    Spanish
## 577                    English
## 578                    English
## 579                    English
## 580                    English
## 581   English/Ukranian/Russian
## 582                    English
## 583                 Portuguese
## 584                    English
cbind(df)
##                                                                                                          Title
## 1                                                                                              Enter the Anime
## 2                                                                                                  Dark Forces
## 3                                                                                                      The App
## 4                                                                                               The Open House
## 5                                                                                                  Kaali Khuhi
## 6                                                                                                        Drive
## 7                                                                                            Leyla Everlasting
## 8                                                                              The Last Days of American Crime
## 9                                                                                                      Paradox
## 10                                                                                          Sardar Ka Grandson
## 11                                                                                        Searching for Sheela
## 12                                                                                                    The Call
## 13                                                                                                     Whipped
## 14                                                                                          All Because of You
## 15                                                                                                       Mercy
## 16                                                                                              After the Raid
## 17                                                                                               Ghost Stories
## 18                                                                                    The Last Thing He Wanted
## 19                                                                                   What Happened to Mr. Cha?
## 20                                                                                                  Death Note
## 21                                                                           Hello Privilege. It's Me, Chelsea
## 22                                                                                            Secret Obsession
## 23                                                                                                  Sextuplets
## 24                                                                                       The Girl on the Train
## 25                                                                                               Thunder Force
## 26                                                                                                Fatal Affair
## 27                                                                                                Just Say Yes
## 28                                                                                            Seriously Single
## 29                                                                       The Misadventures of Hedi and Cokeman
## 30                                                                                            5 Star Christmas
## 31                                                                                                 After Maria
## 32                                                               I Am the Pretty Thing That Lives in the House
## 33                                                                                                 Paris Is Us
## 34                                                            Porta dos Fundos: The First Temptation of Christ
## 35                                                                                                 Rattlesnake
## 36                                                                                                 The Players
## 37                                                                                                  We Are One
## 38                                                                                               Finding Agnes
## 39                                                                                                          IO
## 40                                                                                                  Sentinelle
## 41                                                                                                 Sol Levante
## 42                                                                                                 The Binding
## 43                                                                                            We Can Be Heroes
## 44                                                                                         Christmas Crossfire
## 45                                                                                                  Coin Heist
## 46                                                                                          Mrs. Serial Killer
## 47                                                                          Nobody Sleeps in the Woods Tonight
## 48                                                                                                 Take the 10
## 49                                                                                              The Main Event
## 50                                                                                            The Ridiculous 6
## 51                                                                                             Earth and Blood
## 52                                                                                                    Fearless
## 53                                                                                                Holiday Rush
## 54                                                                                         The Day of the Lord
## 55                                                                                               Airplane Mode
## 56                                                                                                 How It Ends
## 57                                                                                  Love Like the Falling Rain
## 58                                                                                                     Rebirth
## 59                                                                                                Squared Love
## 60                                                                                                     Cadaver
## 61                                                                                                    Clinical
## 62                                                                                             Coffee & Kareem
## 63                                                                                                        Dude
## 64                                                                                                  Geez & Ann
## 65                                                                                      The Larva Island Movie
## 66                                                                                                #REALITYHIGH
## 67                                                           American Factory: A Conversation with the Obamas 
## 68                                                                                                  Desperados
## 69                                                                      Dolly Parton's Christmas on the Square
## 70                                                                                          Father of the Year
## 71                                                                                                   Firebrand
## 72                                                                                                   Ghost Lab
## 73                                                                                            Girlfriend's Day
## 74                                                                           Handsome: A Netflix Mystery Movie
## 75                                                                                             Hubie Halloween
## 76                                                                                                       Ibiza
## 77                                                                                            Rim of the World
## 78                                                                                                Sandy Wexler
## 79                                                                                           See You Yesterday
## 80                                                                         Still Laugh-In: The Stars Celebrate
## 81                                                                                         Strip Down, Rise Up
## 82                                                                                                   Tall Girl
## 83                                                                                                   The Beast
## 84                                                                                                 The Week Of
## 85                                                                       A Christmas Prince: The Royal Wedding
## 86                                                                                              Back to School
## 87                                                                                              Dangerous Lies
## 88                                                                              Gunjan Saxena: The Kargil Girl
## 89                                                                                                   Intuition
## 90                                                                    The Most Assassinated Woman in the World
## 91                                                                                         Things Heard & Seen
## 92                                                                                            To Each, Her Own
## 93                                                                    Who Would You Take to a Deserted Island?
## 94                                                                                                        XOXO
## 95                                                                     A Babysitter's Guide to Monster Hunting
## 96                                                                          A Christmas Prince: The Royal Baby
## 97                                                                                          Despite Everything
## 98                                                                       Dolly Kitty and Those Twinkling Stars
## 99                                                                                    Freaks: You're One of Us
## 100                                                                                            Game Over, Man!
## 101                                                                                                     Guilty
## 102                                                                                          In the Tall Grass
## 103                                                                                              Madame Claude
## 104                                                                                                      Naked
## 105                                                                                           Outside the Wire
## 106                                                                        The Princess Switch: Switched Again
## 107                                                                                     Under the Riccione Sun
## 108                                                                                    A Very Murray Christmas
## 109                                                                                               Been So Long
## 110                                                                                                  Dead Kids
## 111                                                                                              Get the Grift
## 112                                                                                       Ghosts of Sugar Land
## 113                                                                                               House Arrest
## 114                                                                        Kevin Hart's Guide to Black History
## 115                                                                                        Love Wedding Repeat
## 116                                                                                                       Mute
## 117                                                                                                    Òlòt?ré
## 118                                                                                                    Red Dot
## 119                                                                                                Ride or Die
## 120                                                                                               Step Sisters
## 121                                                                                    The Cloverfield Paradox
## 122                                                                                The Knight Before Christmas
## 123                                                                      The Legacy of a Whitetail Deer Hunter
## 124                                                                                                The Package
## 125                                                                                              Unicorn Store
## 126                                                                                               Wine Country
## 127                                                                                                Bomb Scared
## 128                                                                                              Brahman Naman
## 129                                                                                                 Double Dad
## 130                                                                                           Falling Inn Love
## 131                                                                                              Hold the Dark
## 132                                                                                           Love, Guaranteed
## 133                                                                                        One-Way to Tomorrow
## 134                                                                            Sarah Cooper: Everything's Fine
## 135                                                                                             The Last Laugh
## 136                                                                                          The Last Paradiso
## 137                                                                                           The Midnight Sky
## 138                                                                                              The Paramedic
## 139                                                                                              The Sleepover
## 140                                                                                     Vampires vs. the Bronx
## 141                                                                                       Why Did You Kill Me?
## 142                                                                                                A Week Away
## 143                                                                                           Caught by a Wave
## 144                                                                                      Christmas Inheritance
## 145                                                                                                 Dad Wanted
## 146                                                                                        El Camino Christmas
## 147                                                                                                        Eli
## 148                                                                                           Ginny Weds Sunny
## 149                                                                                                   Good Sam
## 150                                                                                                  Lionheart
## 151                                                                                                Little Evil
## 152                                                                                                   One Take
## 153                                                                                           Out of Many, One
## 154                                                                                                Point Blank
## 155                                                                                                 Prime Time
## 156                                                                                                The Do-Over
## 157                                                                                       The Holiday Calendar
## 158                                                                                    The Woman in the Window
## 159                                                                                            The Wrong Missy
## 160                                                                                             Velvet Buzzsaw
## 161                                                                                                    Yes Day
## 162                                                                                                  15 August
## 163                                                                                     A California Christmas
## 164                                                                                         A Christmas Prince
## 165                                                                                        All Day and a Night
## 166                                                                                               American Son
## 167                                                                                                      Barry
## 168                                                                                                  Candy Jar
## 169                                                                                    Choked: Paisa Bolta Hai
## 170                                                                                               Class of '83
## 171                                                                                                 Extinction
## 172                                                                                          Happy Anniversary
## 173                                                                                             I Am All Girls
## 174                                                                                                Let It Snow
## 175                                                                                                    Mascots
## 176                                                                                   Operation Christmas Drop
## 177                                                                                               Rajma Chawal
## 178                                                                                               Rich in Love
## 179                                                                                                Rising High
## 180                                                                                                Rodney King
## 181                                                                                  Sierra Burgess Is a Loser
## 182                                                                                               Small Crimes
## 183                                                                                     Special Correspondents
## 184                                                                                                        TAU
## 185                                                                                            The After Party
## 186                                                                               The Babysitter: Killer Queen
## 187                                                                                           The Claus Family
## 188                                                                                        The Kissing Booth 2
## 189                                                                                           The Perfect Date
## 190                                                                                             What We Wanted
## 191                                                                                            You've Got This
## 192                                                                                                 6 Balloons
## 193                                                                                          A Fall from Grace
## 194                                                                                                    Amateur
## 195                                                                                           Army of the Dead
## 196                                                                                                        Cam
## 197                                                                                            Earthquake Bird
## 198                                                             Frankenstein's Monster's Monster, Frankenstein
## 199                                                                                                 Horse Girl
## 200                                                         Notes from Dunblane: Lesson from a School Shooting
## 201                                                                                                      Maska
## 202                                                                                                The Decline
## 203                                                                               The Minimalists: Less Is Now
## 204                                                                                             The Polka King
## 205                                                                                                   The Prom
## 206                                                                  True Memoirs of an International Assassin
## 207                                                                                                     Ultras
## 208                                                                                                Come Sunday
## 209                                                                                       Forgive Us Our Debts
## 210                                                                                                       iBoy
## 211                                                                                                 Lovefucked
## 212                                                                                                    Juanita
## 213                                                                                             Murder Mystery
## 214                                                                                              Project Power
## 215                                                                                                    Rebecca
## 216                                                                         The Christmas Chronicles: Part Two
## 217                                                                                          The Kissing Booth
## 218                                                                                        The Princess Switch
## 219                                                                     To All the Boys: P.S. I Still Love You
## 220                                                                                                War Machine
## 221                                                                                              6 Underground
## 222                                                                               Between Two Ferns: The Movie
## 223                                                                                              Burning Sands
## 224                                                                                           Casting JonBenet
## 225                                                                                 Deidra & Laney Rob a Train
## 226                                                                                             Finding 'Ohana
## 227                                                                                                   Holidate
## 228                                                                                        Holiday in the Wild
## 229                                                                                           Hot Girls Wanted
## 230                                                                                                Like Father
## 231                                                                                                 Lost Girls
## 232                                                                                                  Otherhood
## 233                                                                                      Pee-wee's Big Holiday
## 234                                                                                                 Rogue City
## 235                                                                                                     Sergio
## 236                                                                                                Stuck Apart
## 237                                                                                       Tersanjung the Movie
## 238                                                                                                 The Killer
## 239                                                                                              The Lovebirds
## 240                                                                            The Most Hated Woman in America
## 241                                                                                             The Perfection
## 242                                                                              Tribhanga – Tedhi Medhi Crazy
## 243                                                                                            Unknown Origins
## 244                                                                                                    Work It
## 245                                                                                                 Alien Xmas
## 246                                                                                Baggio: The Divine Ponytail
## 247                                                                                                 Below Zero
## 248                                                                                                   Citation
## 249                                                                                     Crazy Awesome Teachers
## 250                                                                              Have You Ever Seen Fireflies?
## 251                                                                                           High Flying Bird
## 252                                                                                  In the Shadow of the Moon
## 253                                                                                                Lost Bullet
## 254                                                                         Octonauts & the Caves of Sac Actun
## 255                                                                                      Offering to the Storm
## 256                                                                                            Roxanne Roxanne
## 257                                                                                              Someone Great
## 258                                                                                       Spenser Confidential
## 259                                                                                  The Land of Steady Habits
## 260                                                                                          The Rachel Divide
## 261                                                                                                    Voyuer 
## 262                                                                                                 Win It All
## 263                                                                                                       1922
## 264                                                                                     A Tale of Two Kitchens
## 265                                                                                           Alex Strangelove
## 266                                                                                                    Apostle
## 267                                                                                                      Benji
## 268                                                                                                     Bright
## 269                                                                                                      Cargo
## 270                                                                                            Concrete Cowboy
## 271                                                                                              Feel the Beat
## 272                                                                                               Get the Goat
## 273                                                                                       I Am Not an Easy Man
## 274                                                                                                June & Kopi
## 275                                                                                              Music Teacher
## 276                                                                                       Nail Bomber: Manhunt
## 277                                                                                           Notes for My Son
## 278                                                                                                      Polar
## 279                                                                        Porta dos Fundos: The Last Hangover
## 280                                                                                                Sand Castle
## 281                                                                                               Shimmer Lake
## 282                                                                                                   Spectral
## 283                                                                                             The Babysitter
## 284                                                                                              The Discovery
## 285                                                                                         The Forest of Love
## 286                                                                                             The Laundromat
## 287                                                                               The Legend of Cocaine Island
## 288                                                                                               The Outsider
## 289                                                                                               Time to Hunt
## 290                                                                        To All the Boys: Always and Forever
## 291                                                                           Travis Scott: Look Mom I Can Fly
## 292                                                                                                   Uncorked
## 293                                                                                      Anelka: Misunderstood
## 294                                                                       Ariana Grande: Excuse Me, I Love You
## 295                                                                                                        ARQ
## 296                                                                                                    Birders
## 297                                                                                       Como Caído del Cielo
## 298                                                                                                First Match
## 299                                                                                                  Fractured
## 300                                                                                          Irreplaceable You
## 301                                                                                                 Isi & Ossi
## 302                                                                          John Was Trying to Contact Aliens
## 303                                                                                               Layla Majnun
## 304                                                                   Murder to Mercy: The Cyntoia Brown Story
## 305                                                                                                 My Own Man
## 306                                                                                         Nappily Ever After
## 307                                                                                              Over the Moon
## 308                                                                                                Street Flow
## 309                                                                                              Strong Island
## 310                                                                    Sturgill Simpson Presents: Sound & Fury
## 311                                                                                            Take Your Pills
## 312                                                                                        The Heartbreak Club
## 313                                                                                        The Mars Generation
## 314                                                                                               The Occupant
## 315                                                                                            The Willoughbys
## 316                                                                                            Triple Frontier
## 317                                                                                             Two Catalonias
## 318                                                                                         Walk. Ride. Rodeo.
## 319                                                                                                   Wheelman
## 320                                                                                          When We First Met
## 321                                                                                             A 3 Minute Hug
## 322                                                                                      All the Bright Places
## 323                                                                                           All Together Now
## 324                                                                                  Altered Carbon: Resleeved
## 325                                                                  Antoine Griezmann: The Making of a Legend
## 326                                                                                                    Canvas 
## 327                                                                    Chadwick Boseman: Portrait of an Artist
## 328                                                                                                 Chopsticks
## 329                                                                                                Da 5 Bloods
## 330                                                                          Dolly Parton: A MusiCares Tribute
## 331                                                            Eurovision Song Contest: The Story of Fire Saga
## 332                                                                                              Gerald's Game
## 333                                                                                                  His House
## 334                                                                         Jingle Jangle: A Christmas Journey
## 335                                                                                          Life Overtakes Me
## 336                                                                                               Lust Stories
## 337                                                                                                    Monster
## 338                                                                               Mowgli: Legend of the Jungle
## 339                                                                                      Nobody Knows I'm Here
## 340                                                                     Nobody Speak: Trials of the Free Press
## 341                                                                                                     Oxygen
## 342                                                                                                  Set It Up
## 343                                                                               The Incredible Jessica James
## 344                                                                                                  Tigertail
## 345                                                                                                     Tramps
## 346                                                                                          What Did Jack Do?
## 347                                                                                                   Bad Trip
## 348                                                                                                   Bird Box
## 349                                                                                                    Bulbbul
## 350                                                                                            Crazy About Her
## 351                                                                                            Elisa & Marcela
## 352                                                                                   I'll Sleep When I'm Dead
## 353                                                                              I'm Thinking of Ending Things
## 354                                                                                         It Takes a Lunatic
## 355                                                                                                  Milestone
## 356                                                                                              Recovery Boys
## 357                                                                     ReMastered: Who Killed Jam Master Jay?
## 358                                                                                    Shawn Mendes: In Wonder
## 359                                                                                             Space Sweepers
## 360                                                                                          The American Meme
## 361                                                                                                  The Angel
## 362                                                                                       The Crimes That Bind
## 363                                                                                  The Red Sea Diving Resort
## 364                                                                                What Would Sophia Loren Do?
## 365                                                                                             A Whisker Away
## 366                                                                                            Ajeeb Daastaans
## 367                                                                                     Arlo the Alligator Boy
## 368                                                                               Bikram: Yogi, Guru, Predator
## 369                                                                                                     Blame!
## 370                                                                                               Blue Miracle
## 371                                                                                              CounterPunch 
## 372                                                                    Crack: Cocaine, Corruption & Conspiracy
## 373                                                                                                 Extraction
## 374                                                                                               Giving Voice
## 375                                                                                            Hillbilly Elegy
## 376                                                                         Hope Frozen: A Quest to Live Twice
## 377                                                                                            Imperial Dreams
## 378                                                                                     Just Another Christmas
## 379                                                                                           Little Miss Sumo
## 380                                                                                            Malcolm & Marie
## 381                                                        Michael Bolton's Big, Sexy, Valentine's Day Special
## 382                                                                                                      Moxie
## 383                                                                                          Night in Paradise
## 384                                                                                                Paper Lives
## 385                                                                                   Parchis: The Documentary
## 386                                                                                                   Tallulah
## 387                                                                                              The Old Guard
## 388                                                                           Tony Robbins: I Am Not Your Guru
## 389                                                                                                   Upstarts
## 390                                                                                                    22 July
## 391                                                                                                     7 años
## 392                                                                                A Futile and Stupid Gesture
## 393                                                              A Life of Speed: The Juan Manuel Fangio Story
## 394                                                                                    A Love Song for Latasha
## 395                                                                                           All in My Family
## 396                                                                                         Always Be My Maybe
## 397                                                                                                   Becoming
## 398                                                                                       Long Live Brij Mohan
## 399                                                                                                    Calibre
## 400                                                                                              Death to 2020
## 401                                                                                        GIMS: On the Record
## 402                                                               Have a Good Trip: Adventures in Psychedelics
## 403                                                                                                 Heroin(e) 
## 404                                                                                                 Mercury 13
## 405                                                                                          Saving Capitalism
## 406                                                                                                Serious Men
## 407                                                                                       The Boys in the Band
## 408                                                                   The Boys in the Band: Something Personal
## 409                                                                                             The Life Ahead
## 410                                                                                 The Other Side of the Wind
## 411                                                                                                 The Trader
## 412                                                                                                To the Bone
## 413                                                                                Tony Parker: The Final Shot
## 414                                                                                                   AK vs AK
## 415                                                                                                Amanda Knox
## 416                                                                               Bigflo & Oil: Hip Hop Frenzy
## 417                                                                              Biggie: I Got a Story to Tell
## 418                                                                                           Cops and Robbers
## 419                                                                 I Don't Feel at Home in This World Anymore
## 420                                                                                                  Laerte-se
## 421                                                                                                       Mank
## 422                                                                                         Our Souls at Night
## 423                                                                                                Outlaw King
## 424                                                                                                   Pagglait
## 425                                                                          ReMastered: Who Shot the Sheriff?
## 426                                                                                              Seeing Allred
## 427                                                                                         Spelling the Dream
## 428                                                                                     The Claudia Kishi Club
## 429                                                                                             The Half of It
## 430                                                                                             The Highwaymen
## 431                                      The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 432                                                                  The Meyerowitz Stories (New and Selected)
## 433                                                                        Feminists: What Were They Thinking?
## 434                                                                                        Gaga: Five Foot Two
## 435                                I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 436                                                                                              Kingdom of Us
## 437                                                                                 Lorena, Light-Footed Woman
## 438                                                                      Los Tigres del Norte at Folsom Prison
## 439                                                                                   Ma Rainey's Black Bottom
## 440                                                       Ma Rainey's Black Bottom: A Legacy Brought to Screen
## 441                                                    Operation Varsity Blues: The College Admissions Scandal
## 442                                                                                                       Pele
## 443                                                                        ReMastered: Devil at the Crossroads
## 444                                                                               ReMastered: The Lion's Share
## 445                                                                    ReMastered: The Miami Showband Massacre
## 446                                                                                                  Resurface
## 447                                                                          Rocko's Modern Life: Static Cling
## 448                                                                                                Rose Island
## 449                                                                                   The Christmas Chronicles
## 450                                                                                                   The Dirt
## 451                                                                                     The Night Comes for Us
## 452                                                     13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 453                                                                                         Angela's Christmas
## 454                                                                                    Angela's Christmas Wish
## 455                                                                                                      Beats
## 456                                                                                            Circus of Books
## 457                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 458                                                                                    Derren Brown: Sacrifice
## 459                                                                                    El Pepe: A Supreme Life
## 460                                                                                                   End Game
## 461                                                                                                     Evelyn
## 462                                                                                                      Ferry
## 463                                                                                           Grass Is Greener
## 464                                                                        Guillermo Vilas: Settling the Score
## 465                                                                            Joshua: Teenager vs. Superpower
## 466                                                                        Keith Richards: Under the Influence
## 467                                                                                       Knock Down the House
## 468                                                                      Loudon Wainwright III: Surviving Twin
## 469                                                                                  My Beautiful Broken Brain
## 470                                                                                                  One of Us
## 471                                                                                          Pieces of a Woman
## 472                                                                                       Ram Dass, Going Home
## 473                                                                 ReMastered: Tricky Dick & the Man in Black
## 474                                                                                          Rooting for Roona
## 475                                                                                     The Devil All the Time
## 476                                                                                                    The Dig
## 477                                                                                             The Great Hack
## 478                                                                                            The White Tiger
## 479                                                                          To All the Boys I've Loved Before
## 480                                                                      American Murder: The Family Next Door
## 481                                                                                             Audrie & Daisy
## 482                                                                                First They Killed My Father
## 483                                                               Fyre: The Greatest Party That Never Happened
## 484                                                                                           Into the Inferno
## 485                                                                                               LA Originals
## 486                                                                                               Ladies First
## 487                                                                                       Love per Square Foot
## 488                                                                                                  Paddleton
## 489                                                                                               Private Life
## 490                                                                                                  Seventeen
## 491                                                                                                  Sometimes
## 492                                                                                                       Soni
## 493                                                                                    The 40-Year-Old Version
## 494                                                                                               The Disciple
## 495                                                                                      The Edge of Democracy
## 496                                                                                                   The King
## 497                                                                The Road to El Camino: A Breaking Bad Movie
## 498                                                                                    The Siege of Jadotville
## 499                                                                                                      Zion 
## 500                                                                                        Dolemite Is My Name
## 501                                                                            El Camino: A Breaking Bad Movie
## 502                                                                                                   Extremis
## 503                                                                                         Father Soldier Son
## 504                                                                                         Get Me Roger Stone
## 505                                                                                         I'm No Longer Here
## 506                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 507                                                                         Octonauts & the Great Barrier Reef
## 508                                                                                                       Okja
## 509                                                                                                 On My Skin
## 510                                                                                             Raat Akeli Hai
## 511                                                                        ReMastered: Massacre at the Stadium
## 512                                                                  ReMastered: The Two Killings of Sam Cooke
## 513                                                                                Secrets of the Saqqara Tomb
## 514                                                                                    Sitara: Let Girls Dream
## 515                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 516                                                                                            Team Foxcatcher
## 517                                                                               The Ballad of Buster Scruggs
## 518                                                                    The Death and Life of Marsha P. Johnson
## 519                                                                                 The Fundamentals of Caring
## 520                                                           The Other One: The Long Strange Trip of Bob Weir
## 521                                                                                           American Factory
## 522                                                                                           Fire in Paradise
## 523                                                                                                  Long Shot
## 524                                                                                             Miss Americana
## 525                                                                                   Period. End of Sentence.
## 526                                                                              Shawn Mendes: Live in Concert
## 527                                                                                                   Shirkers
## 528                                                                                        The Black Godfather
## 529                                                                              The Irishman: In Conversation
## 530                                                                                           The Speed Cubers
## 531                                                                              They'll Love Me When I'm Dead
## 532                                                                                                        Tig
## 533                                                                Barbra: The Music, The Mem'ries, The Magic!
## 534                                                                                Blackpink: Light Up the Sky
## 535                                                                                                City of Joy
## 536                                                                                       Dick Johnson Is Dead
## 537                                                                             Homecoming: A Film by Beyonce 
## 538                                                                             Invader Zim: Enter the Florpus
## 539                                                                      Joan Didion: The Center Will Not Hold
## 540                                                                        John Mulaney & the Sack Lunch Bunch
## 541                                                                                              Reversing Roe
## 542                                                                                          The White Helmets
## 543                                                                                                  Athlete A
## 544                                                                                                       Ludo
## 545                                                                                                     Quincy
## 546                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 547                                                                                           Tell Me Who I Am
## 548                                                                                          The Bleeding Edge
## 549                                                                                         The Social Dilemma
## 550                                                                                              The Two Popes
## 551                                                                                What Happened, Miss Simone?
## 552                                                                                                 Yeh Ballet
## 553                                                                                                      Anima
## 554                                                                                        Beasts of No Nation
## 555                                                                           Brene Brown: The Call to Courage
## 556                                                                         Crip Camp: A Disability Revolution
## 557 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 558                                                                     Justin Timberlake + The Tennessee Kids
## 559                                                                                               Road to Roma
## 560                                                                                                       Roma
## 561                                                                             If Anything Happens I Love You
## 562                                                                                               The Irishman
## 563                                                                                 The Trial of the Chicago 7
## 564                                                                                              A Secret Love
## 565                                                                                                     Icarus
## 566                                                                                             Marriage Story
## 567                                                                                             The Ivory Game
## 568                                                               Struggle: The Life and Lost Art of Szukaiski
## 569                                                                                             Chasing Coral 
## 570                                                                                         My Octopus Teacher
## 571                                                                                             Rising Phoenix
## 572                                                                                                       13th
## 573                                                                          Disclosure: Trans Lives on Screen
## 574                                                                                                      Klaus
## 575                                                                                                 Seaspiracy
## 576                                                                      The Three Deaths of Marisela Escobedo
## 577                                                                                    Cuba and the Cameraman 
## 578                                                                                     Dancing with the Birds
## 579                                                                 Ben Platt: Live from Radio City Music Hall
## 580                                                                      Taylor Swift: Reputation Stadium Tour
## 581                                                                Winter on Fire: Ukraine's Fight for Freedom
## 582                                                                                    Springsteen on Broadway
## 583                                                                  Emicida: AmarElo - It's All For Yesterday
## 584                                                                   David Attenborough: A Life on Our Planet
##                                    Genre           Premiere Runtime IMDB.Score
## 1                            Documentary     August 5, 2019      58        2.5
## 2                               Thriller    August 21, 2020      81        2.6
## 3                  Science fiction/Drama  December 26, 2019      79        2.6
## 4                        Horror thriller   January 19, 2018      94        3.2
## 5                                Mystery   October 30, 2020      90        3.4
## 6                                 Action   November 1, 2019     147        3.5
## 7                                 Comedy   December 4, 2020     112        3.7
## 8                    Heist film/Thriller       June 5, 2020     149        3.7
## 9                Musical/Western/Fantasy     March 23, 2018      73        3.9
## 10                                Comedy       May 18, 2021     139        4.1
## 11                           Documentary     April 22, 2021      58        4.1
## 12                                 Drama  November 27, 2020     112        4.1
## 13                       Romantic comedy September 18, 2020      97        4.1
## 14                         Action comedy    October 1, 2020     101        4.2
## 15                              Thriller  November 22, 2016      90        4.2
## 16                           Documentary  December 19, 2019      25        4.3
## 17                      Horror anthology    January 1, 2020     144        4.3
## 18                    Political thriller  February 21, 2020     115        4.3
## 19                                Comedy    January 1, 2021     102        4.3
## 20                       Horror thriller    August 25, 2017     100        4.4
## 21                           Documentary September 13, 2019      64        4.4
## 22                              Thriller      July 18, 2019      97        4.4
## 23                                Comedy    August 16, 2019      99        4.4
## 24                              Thriller  February 26, 2021     120        4.4
## 25                      Superhero-Comedy      April 9, 2021     105        4.4
## 26                              Thriller      July 16, 2020      89        4.5
## 27                       Romantic comedy      April 2, 2021      97        4.5
## 28                                Comedy      July 31, 2020     107        4.5
## 29                                Comedy  February 10, 2021      99        4.5
## 30                                Comedy   December 7, 2018      95        4.6
## 31                           Documentary       May 24, 2019      37        4.6
## 32                                Horror   October 28, 2016      89        4.6
## 33                         Romance drama  February 22, 2019      83        4.6
## 34                                Comedy   December 3, 2019      46        4.6
## 35                                Horror   October 25, 2019      85        4.6
## 36                                Comedy      July 15, 2020      88        4.6
## 37                           Documentary      July 14, 2020      86        4.6
## 38                                 Drama  November 30, 2020     105        4.7
## 39                 Science fiction/Drama   January 18, 2019      95        4.7
## 40                                Action      March 5, 2021      80        4.7
## 41                         Anime / Short      April 2, 2020       4        4.7
## 42                                 Drama    October 2, 2020      93        4.7
## 43                             Superhero  December 25, 2020     100        4.7
## 44                              Thriller   December 4, 2020     106        4.8
## 45                                 Heist    January 6, 2017      97        4.8
## 46                              Thriller        May 1, 2020     106        4.8
## 47                                Horror   October 28, 2020     103        4.8
## 48                                Comedy   January 20, 2017      80        4.8
## 49                                Comedy     April 10, 2020     101        4.8
## 50                               Western  December 11, 2015     119        4.8
## 51                                Action     April 17, 2020      80        4.9
## 52                   Animation/Superhero    August 14, 2020      89        4.9
## 53                           Family film  November 28, 2019      94        4.9
## 54                                 Drama   October 30, 2020      93        4.9
## 55                                Comedy   January 23, 2020      96        5.0
## 56                       Action-thriller      July 13, 2018     113        5.0
## 57                                 Drama   October 15, 2020      86        5.0
## 58                              Thriller      July 15, 2016     100        5.0
## 59                       Romantic comedy  February 11, 2021     102        5.0
## 60                                Horror   October 22, 2020      86        5.1
## 61                              Thriller   January 13, 2017     104        5.1
## 62                         Action comedy      April 3, 2020      88        5.1
## 63                     Teen comedy-drama     April 20, 2018      97        5.1
## 64                        Romantic drama  February 25, 2021     105        5.1
## 65                             Animation      July 23, 2020      90        5.1
## 66                                Comedy  September 8, 2017      99        5.2
## 67                 Aftershow / Interview    August 21, 2019      10        5.2
## 68                       Romantic comedy       July 3, 2020     106        5.2
## 69                     Christmas musical  November 22, 2020      98        5.2
## 70                                Comedy      July 20, 2018      94        5.2
## 71                                 Drama  February 22, 2019     112        5.2
## 72                                Horror       May 26, 2021     117        5.2
## 73                                Comedy  February 14, 2017      70        5.2
## 74                                Comedy        May 5, 2017      81        5.2
## 75                                Comedy    October 7, 2020     103        5.2
## 76                                Comedy       May 25, 2018      94        5.2
## 77             Science fiction adventure       May 24, 2019      98        5.2
## 78                                Comedy     April 14, 2017     131        5.2
## 79                       Science fiction       May 17, 2019      87        5.2
## 80                          Variety show       May 14, 2019      60        5.2
## 81                           Documentary   February 5, 2021     112        5.2
## 82                          Comedy-drama September 13, 2019     102        5.2
## 83                                 Drama  November 27, 2020      99        5.2
## 84                                Comedy     April 27, 2018     116        5.2
## 85                       Romantic comedy  November 30, 2018      92        5.3
## 86                                Comedy    August 30, 2019      83        5.3
## 87                              Thriller     April 30, 2020      97        5.3
## 88                                 Drama    August 12, 2020     112        5.3
## 89                              Thriller       May 28, 2020     116        5.3
## 90                              Thriller  September 7, 2018     102        5.3
## 91                                Horror     April 29, 2021     121        5.3
## 92                       Romantic comedy      June 24, 2018      95        5.3
## 93                                 Drama     April 12, 2019      93        5.3
## 94                                 Drama    August 26, 2016      92        5.3
## 95                 Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 96                       Romantic comedy   December 5, 2019      85        5.4
## 97                                Comedy        May 3, 2019      78        5.4
## 98                                 Drama September 18, 2020     120        5.4
## 99                    Supernatural drama  September 2, 2020      92        5.4
## 100                        Action/Comedy     March 23, 2018     101        5.4
## 101                             Thriller      March 6, 2020     119        5.4
## 102                               Horror    October 4, 2019     101        5.4
## 103                                Drama      April 2, 2021     112        5.4
## 104                               Comedy    August 11, 2017      96        5.4
## 105               Action/Science fiction   January 15, 2021     114        5.4
## 106                      Romantic comedy  November 19, 2020      97        5.4
## 107               Romantic teenage drama       July 1, 2020     101        5.4
## 108                     Comedy / Musical   December 4, 2015      56        5.5
## 109                              Musical   October 26, 2018     100        5.5
## 110                             Thriller   December 1, 2019      94        5.5
## 111                               Comedy     April 28, 2021      94        5.5
## 112                          Documentary   October 16. 2019      21        5.5
## 113                               Comedy  November 15, 2019     104        5.5
## 114                         Variety show   February 8, 2019      63        5.5
## 115                      Romantic comedy     April 10, 2020     100        5.5
## 116              Science fiction/Mystery  February 23, 2018     126        5.5
## 117                          Crime drama    October 2, 2020     106        5.5
## 118                             Thriller  February 11, 2021      86        5.5
## 119         Psychological thriller drama     April 15, 2021     142        5.5
## 120                               Comedy   January 19, 2018     108        5.5
## 121                      Science fiction   February 4, 2018     102        5.5
## 122                      Romantic comedy  November 21, 2019      92        5.5
## 123                     Adventure/Comedy       July 6, 2018      83        5.5
## 124                         Black comedy    August 10, 2018      94        5.5
## 125                               Comedy      April 5, 2019      92        5.5
## 126                               Comedy       May 10, 2019     103        5.5
## 127                         Black comedy   October 12, 2017      89        5.6
## 128                               Comedy       July 7, 2016      95        5.6
## 129                         Comedy-drama   January 15, 2021     103        5.6
## 130                      Romantic comedy    August 29, 2019      97        5.6
## 131                             Thriller September 28, 2018     125        5.6
## 132                      Romantic comedy  September 3, 2020      91        5.6
## 133                              Romance      June 19, 2020      90        5.6
## 134                         Variety show   October 27, 2020      49        5.6
## 135                         Comedy-drama   January 11, 2019      98        5.6
## 136                       Romantic drama   February 5, 2021     107        5.6
## 137                      Science fiction  December 23, 2020     118        5.6
## 138                             Thriller September 16, 2020      94        5.6
## 139                               Comedy    August 21, 2020     103        5.6
## 140                        Horror comedy    October 2, 2020      86        5.6
## 141                          Documentary     April 14, 2021      83        5.6
## 142                    Christian musical     March 26, 2021      97        5.7
## 143                  Romantic teen drama     March 25, 2021      99        5.7
## 144                       Romantic drama  December 15, 2017     104        5.7
## 145                               Family September 11, 2020     102        5.7
## 146                          Dark comedy   December 8, 2017      89        5.7
## 147                               Horror   October 18, 2019      98        5.7
## 148                      Romantic comedy    October 9, 2020     125        5.7
## 149                                Drama       May 16, 2019      89        5.7
## 150                               Comedy    January 4, 2019      94        5.7
## 151                        Comedy horror  September 1, 2017      94        5.7
## 152                          Documentary      June 18, 2020      85        5.7
## 153                          Documentary  December 12, 2018      34        5.7
## 154                               Action      July 12, 2019      86        5.7
## 155                             Thriller     April 14, 2021      91        5.7
## 156                        Action comedy       May 27, 2016     108        5.7
## 157                      Romantic comedy   November 2, 2018      95        5.7
## 158               Psychological thriller       May 14, 2021     100        5.7
## 159                               Comedy       May 13, 2020      90        5.7
## 160                             Thriller   February 1, 2019     112        5.7
## 161                               Comedy     March 12, 2021      86        5.7
## 162                         Comedy-drama     March 29, 2019     124        5.8
## 163                      Romantic comedy  December 14, 2020     107        5.8
## 164                      Romantic comedy  November 17, 2017      92        5.8
## 165                                Drama        May 1, 2020     121        5.8
## 166                                Drama   November 1, 2019      90        5.8
## 167                               Biopic  December 16, 2016     104        5.8
## 168                               Comedy     April 27, 2018      92        5.8
## 169                                Drama       June 5, 2020     114        5.8
## 170                                Drama    August 21, 2020      98        5.8
## 171             Science fiction/Thriller      July 27, 2018      95        5.8
## 172                      Romantic comedy     March 30, 2018      78        5.8
## 173                             Thriller       May 14, 2021     107        5.8
## 174                      Romantic comedy   November 8, 2019      92        5.8
## 175                         Mockumentary   October 13, 2016      95        5.8
## 176                      Romantic comedy   November 5, 2020      96        5.8
## 177                         Comedy-drama  November 30, 2018     118        5.8
## 178                      Romantic comedy     April 30, 2020     105        5.8
## 179                               Satire     April 17, 2020      94        5.8
## 180                         One-man show     April 28, 2017      52        5.8
## 181                Romantic comedy-drama  September 7, 2018     105        5.8
## 182                          Dark comedy     April 28, 2017      95        5.8
## 183                               Satire     April 29, 2016     100        5.8
## 184             Science fiction/Thriller      June 29, 2018      97        5.8
## 185                               Comedy    August 24, 2018      89        5.8
## 186                        Comedy/Horror September 10, 2020     102        5.8
## 187                              Fantasy   December 7, 2020      96        5.8
## 188                      Romantic comedy      July 24, 2020     131        5.8
## 189                      Romantic comedy     April 12, 2019      89        5.8
## 190                                Drama  November 11, 2020      93        5.8
## 191                      Romantic comedy    October 2, 2020     111        5.8
## 192                                Drama      April 6, 2018      75        5.9
## 193                             Thriller   January 17, 2020     120        5.9
## 194                         Sports-drama      April 6, 2018      96        5.9
## 195                         Zombie/Heist       May 21, 2021     148        5.9
## 196                 Psychological horror  November 16, 2018      94        5.9
## 197                              Mystery  November 15, 2019     107        5.9
## 198                         Mockumentary      July 16, 2019      32        5.9
## 199                                Drama   February 7, 2020     104        5.9
## 200                          Documentary September 28, 2018      23        5.9
## 201                      Romantic comedy     March 27, 2020     111        5.9
## 202                             Thriller     March 27, 2020      83        5.9
## 203                          Documentary    January 1, 2021      53        5.9
## 204                         Comedy-drama   January 12, 2018      95        5.9
## 205                              Musical  December 11, 2020     132        5.9
## 206                        Action comedy  November 11, 2016      98        5.9
## 207                          Sports film     March 20, 2020     108        5.9
## 208                               Biopic     April 13, 2018     106        6.0
## 209                                Drama        May 4, 2018     104        6.0
## 210             Science fiction/Thriller   January 27, 2017      90        6.0
## 211                                Drama     August 9, 2019     106        6.0
## 212                                Drama      March 8, 2019      90        6.0
## 213                       Comedy mystery      June 14, 2019      97        6.0
## 214                            Superhero    August 14, 2020     113        6.0
## 215                    Romantic thriller   October 21, 2020     123        6.0
## 216                     Christmas comedy  November 25, 2020     115        6.0
## 217                      Romantic comedy       May 11, 2018     105        6.0
## 218                      Romantic comedy  November 16, 2018     101        6.0
## 219                      Romantic comedy  February 12, 2020     102        6.0
## 220                           War-Comedy       May 26, 2017     122        6.0
## 221                               Action  December 13, 2019     128        6.1
## 222                               Comedy September 20, 2019      82        6.1
## 223                                Drama     March 10, 2017     102        6.1
## 224                          Documentary     April 28, 2017      80        6.1
## 225                                Drama     March 17, 2017      94        6.1
## 226                               Family   January 29, 2021     123        6.1
## 227              Romantic comedy/Holiday   October 28, 2020     104        6.1
## 228                    Adventure-romance   November 1, 2019      85        6.1
## 229                          Documentary       May 29, 2015      84        6.1
## 230                               Comedy     August 3, 2018     103        6.1
## 231                          Crime drama     March 13, 2020      95        6.1
## 232                               Comedy     August 2, 2019     100        6.1
## 233                            Adventure     March 18, 2016      89        6.1
## 234                          Crime drama   October 30, 2020     116        6.1
## 235                               Biopic     April 17, 2020     118        6.1
## 236                                Drama    January 8, 2021      96        6.1
## 237                                Drama      April 1, 2021     114        6.1
## 238                              Western  November 10, 2017      99        6.1
## 239                      Romantic comedy       May 22, 2020      87        6.1
## 240                               Biopic     March 24, 2017      92        6.1
## 241                      Horror-thriller       May 24, 2019      90        6.1
## 242                                Drama   January 15, 2021      95        6.1
## 243                             Thriller    August 28, 2020      96        6.1
## 244                         Dance comedy     August 7, 2020      93        6.1
## 245                          Stop Motion  November 20, 2020      42        6.2
## 246                               Biopic       May 26, 2021      92        6.2
## 247                                Drama   January 29, 2021     106        6.2
## 248                                Drama   November 6, 2020     151        6.2
## 249                         Comedy-drama    August 17, 2020     101        6.2
## 250                               Comedy      April 9, 2021     114        6.2
## 251                         Sports-drama   February 8, 2019      90        6.2
## 252                             Thriller September 27, 2019     115        6.2
## 253                             Thriller      June 19, 2020      92        6.2
## 254                            Animation    August 14, 2020      72        6.2
## 255                             Thriller      July 24, 2020     139        6.2
## 256                               Biopic     March 23, 2018      98        6.2
## 257                      Romantic comedy     April 19, 2019      92        6.2
## 258                        Action comedy      March 6, 2020     111        6.2
## 259                                Drama September 14, 2018      98        6.2
## 260                          Documentary     April 27, 2018     104        6.2
## 261                          Documentary   December 1, 2017      95        6.2
## 262                               Comedy      April 7, 2017      88        6.2
## 263                   Horror/Crime drama   October 20, 2017     102        6.3
## 264                          Documentary       May 22, 2019      30        6.3
## 265                      Romantic comedy       June 8, 2018      99        6.3
## 266                      Horror-thriller   October 12, 2018     129        6.3
## 267                          Family film     March 16, 2018      87        6.3
## 268                        Urban fantasy  December 22, 2017     117        6.3
## 269                         Drama/Horror       May 18, 2018     104        6.3
## 270                                Drama      April 2, 2021     111        6.3
## 271                  Family/Comedy-drama      June 19, 2020     107        6.3
## 272                               Comedy     March 18, 2021      97        6.3
## 273                      Romantic comedy     April 13, 2018      98        6.3
## 274                                Drama   January 28, 2021      90        6.3
## 275                                Drama     April 19, 2019     101        6.3
## 276                          Documentary       May 26, 2021      72        6.3
## 277                                Drama  November 24, 2020      83        6.3
## 278                               Action   January 25, 2019     118        6.3
## 279                               Comedy  December 21, 2018      44        6.3
## 280                                  War     April 21, 2017     113        6.3
## 281                       Crime thriller       June 9, 2017      86        6.3
## 282               Science fiction/Action   December 9, 2016     108        6.3
## 283                   Teen comedy horror   October 13, 2017      85        6.3
## 284                Science fiction/Drama     March 31, 2017     102        6.3
## 285                                Drama   October 11, 2019     151        6.3
## 286                         Comedy-drama   October 18, 2019      98        6.3
## 287                          Documentary     March 29, 2019      87        6.3
## 288                          Crime drama      March 9, 2018     120        6.3
## 289                             Thriller     April 23, 2020     134        6.3
## 290                      Romantic comedy  February 12, 2021     109        6.3
## 291                          Documentary    August 28, 2019      85        6.3
## 292                                Drama     March 27, 2020     103        6.3
## 293                          Documentary     August 5, 2020      94        6.4
## 294                         Concert Film  December 21, 2020      97        6.4
## 295             Science fiction/Thriller September 16, 2016      88        6.4
## 296                          Documentary September 25, 2019      37        6.4
## 297                       Musical comedy  December 24, 2019     112        6.4
## 298                         Sports-drama     March 30, 2018     102        6.4
## 299                             Thriller   October 11, 2019     100        6.4
## 300                                Drama  February 16, 2018      96        6.4
## 301                      Romantic comedy  February 14, 2020     113        6.4
## 302                          Documentary    August 20, 2020      16        6.4
## 303                       Romantic drama  February 11, 2021     119        6.4
## 304                          Documentary     April 29, 2020      97        6.4
## 305                          Documentary  December 13, 2014      81        6.4
## 306                         Comedy-drama September 21, 2018      98        6.4
## 307          Animation/Musical/Adventure   October 23, 2020      95        6.4
## 308                                Drama   October 12, 2019      96        6.4
## 309                          Documentary September 15. 2017     107        6.4
## 310                 Animation / Musicial September 27, 2019      41        6.4
## 311                          Documentary     March 16, 2018      87        6.4
## 312                         Comedy-drama   January 14, 2021     101        6.4
## 313                          Documentary        May 5, 2017      97        6.4
## 314                             Thriller     March 25, 2020     103        6.4
## 315           Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 316                      Action-thriller     March 13, 2019     125        6.4
## 317                          Documentary September 28, 2018     116        6.4
## 318                                Drama      March 8, 2019      99        6.4
## 319                      Action thriller   October 20, 2017      82        6.4
## 320                      Romantic comedy   February 9, 2018      97        6.4
## 321                          Documentary   October 28, 2019      28        6.5
## 322                              Romance  February 28, 2020     108        6.5
## 323                                Drama    August 28, 2020      93        6.5
## 324                Anime/Science fiction     March 19, 2020      74        6.5
## 325                          Documentary     March 21, 2019      60        6.5
## 326                    Animation / Short  December 11, 2020       9        6.5
## 327                          Documentary     April 17, 2021      21        6.5
## 328                               Comedy       May 31, 2019     100        6.5
## 329                            War drama      June 12, 2020     155        6.5
## 330                          Documentary      April 7, 2021      55        6.5
## 331                       Musical comedy      June 26, 2020     123        6.5
## 332                      Horror thriller September 29, 2017     103        6.5
## 333                             Thriller   October 30, 2020      93        6.5
## 334             Family/Christmas musical  November 13, 2020     119        6.5
## 335                          Documentary      June 14, 2019      40        6.5
## 336                                Drama      June 15, 2018     120        6.5
## 337                                Drama        May 7, 2021      98        6.5
## 338                            Adventure   December 7, 2018     104        6.5
## 339                                Drama      June 24, 2020      91        6.5
## 340                          Documentary      June 23, 2017      95        6.5
## 341             Science fiction thriller       May 12, 2021     101        6.5
## 342                      Romantic comedy      June 15, 2018     105        6.5
## 343                               Comedy      July 28, 2017      83        6.5
## 344                                Drama     April 10, 2020      91        6.5
## 345                              Romance     April 21, 2017      83        6.5
## 346                        Drama / Short   January 20, 2020      17        6.5
## 347           Hidden-camera prank comedy     March 26, 2021      86        6.6
## 348               Psychological thriller  December 21, 2018     124        6.6
## 349                               Horror      June 24, 2020      94        6.6
## 350                      Romantic comedy  February 26, 2021     102        6.6
## 351                              Romance       June 7, 2019     118        6.6
## 352                          Documentary    August 19, 2016      79        6.6
## 353               Psychological thriller  September 4, 2020     134        6.6
## 354                          Documentary   October 25, 2019     126        6.6
## 355                                Drama        May 7, 2021      98        6.6
## 356                          Documentary      June 29, 2018      89        6.6
## 357                          Documentary   December 7, 2018      58        6.6
## 358                          Documentary  November 23, 2020      83        6.6
## 359                      Science fiction   February 5, 2021     136        6.6
## 360                          Documentary   December 7, 2018      98        6.6
## 361                         Spy thriller September 14, 2018     114        6.6
## 362                          Crime drama    August 20, 2020      99        6.6
## 363                         Spy thriller      July 31, 2019     130        6.6
## 364                          Documentary   January 15, 2021      32        6.6
## 365                        Anime/Fantasy      June 18, 2020     104        6.7
## 366                                Drama     April 16, 2021     142        6.7
## 367              Animated musical comedy     April 16, 2021      92        6.7
## 368                          Documentary  November 20, 2019      86        6.7
## 369                Anime/Science fiction       May 20, 2017     106        6.7
## 370                                Drama       May 27, 2021      95        6.7
## 371                          Documentary      June 16, 2017      91        6.7
## 372                          Documentary   January 11, 2021      89        6.7
## 373                               Action     April 24, 2020     117        6.7
## 374                          Documentary  December 11, 2020      90        6.7
## 375                                Drama  November 24, 2020     117        6.7
## 376                          Documentary September 15, 2020      80        6.7
## 377                                Drama   February 3, 2017      87        6.7
## 378                               Comedy   December 3, 2020     101        6.7
## 379                          Documentary   October 28, 2019      19        6.7
## 380                       Romantic drama   February 5, 2021     106        6.7
## 381                         Variety Show   February 7, 2017      54        6.7
## 382                                Drama      March 3, 2021     111        6.7
## 383                                Drama      April 9, 2021     132        6.7
## 384                                Drama     March 12, 2021      97        6.7
## 385                          Documentary      July 10, 2019     106        6.7
## 386                         Comedy-drama      July 29, 2016     111        6.7
## 387                     Superhero/Action      July 10, 2020     124        6.7
## 388                          Documentary      July 15. 2016     116        6.7
## 389                                Drama   October 18, 2019     112        6.7
## 390                                Drama   October 10, 2018     144        6.8
## 391                                Drama   October 28, 2016      76        6.8
## 392                  Biographical/Comedy   January 26, 2018     101        6.8
## 393                          Documentary     March 20, 2020      92        6.8
## 394                          Documentary September 21, 2020      19        6.8
## 395                          Documentary        May 3, 2019      39        6.8
## 396                      Romantic comedy       May 31, 2019     102        6.8
## 397                          Documentary        May 6, 2020      89        6.8
## 398                               Comedy     August 3, 2018     105        6.8
## 399                             Thriller      June 29, 2018     101        6.8
## 400                               Comedy  December 27, 2020      70        6.8
## 401                          Documentary September 17, 2020      96        6.8
## 402                          Documentary       May 11, 2020      85        6.8
## 403                          Documentary September 12, 2017      39        6.8
## 404                          Documentary     April 20, 2018      79        6.8
## 405                          Documentary  November 21, 2017      73        6.8
## 406                                Drama    October 2, 2020     114        6.8
## 407                                Drama September 30, 2020     121        6.8
## 408                Aftershow / Interview September 30, 2020      28        6.8
## 409                                Drama  November 13, 2020      95        6.8
## 410                                Drama   November 2, 2018     122        6.8
## 411                          Documentary   February 9, 2018      23        6.8
## 412                                Drama      July 14, 2017     107        6.8
## 413                          Documentary    January 6, 2021      98        6.8
## 414                             Thriller  December 24, 2020     108        6.9
## 415                          Documentary September 30, 2016      92        6.9
## 416                          Documentary    October 8, 2020     100        6.9
## 417                          Documentary      March 1, 2021      97        6.9
## 418                    Animation / Short  December 28, 2020       7        6.9
## 419                                Drama  February 24, 2017      96        6.9
## 420                          Documentary       May 19, 2017     100        6.9
## 421                               Biopic   December 4, 2020     132        6.9
## 422                              Romance September 29, 2017     103        6.9
## 423                      Historical-epic   November 9, 2018     121        6.9
## 424                         Comedy-drama     March 26, 2021     114        6.9
## 425                          Documentary   October 12, 2018      57        6.9
## 426                          Documentary   February 9, 2018      95        6.9
## 427                          Documentary       June 3, 2020      83        6.9
## 428                          Documentary      July 10, 2020      17        6.9
## 429                              Romance        May 1, 2020     105        6.9
## 430                          Crime drama     March 29, 2019     131        6.9
## 431                     Comedy / Musical       May 23, 2019      30        6.9
## 432                         Comedy-drama   October 13, 2017     112        6.9
## 433                          Documentary   October 12, 2018      86        7.0
## 434                          Documentary September 22, 2017     100        7.0
## 435                Aftershow / Interview   November 3, 2020      14        7.0
## 436                          Documentary   October 13, 2017     109        7.0
## 437                          Documentary  November 20, 2019      28        7.0
## 438                          Documentary September 15, 2019      64        7.0
## 439                                Drama  December 18, 2020      94        7.0
## 440                Aftershow / Interview  December 18, 2020      31        7.0
## 441                          Documentary     March 17, 2021      99        7.0
## 442                          Documentary  February 23, 2021     108        7.0
## 443                          Documentary     April 26, 2019      48        7.0
## 444                          Documentary       May 17, 2019      84        7.0
## 445                          Documentary     March 22, 2019      70        7.0
## 446                          Documentary  September 1, 2017      27        7.0
## 447                   Animation / Comedy     August 9, 2019      45        7.0
## 448                               Comedy   December 9, 2020     117        7.0
## 449   Christmas/Fantasy/Adventure/Comedy  November 22, 2018     104        7.0
## 450                               Biopic     March 22, 2019     108        7.0
## 451                      Action-thriller   October 19, 2018     121        7.0
## 452                Aftershow / Interview   January 26, 2017      36        7.1
## 453                            Animation  November 30, 2018      30        7.1
## 454                            Animation   December 1, 2020      47        7.1
## 455                                Drama      June 19, 2019     110        7.1
## 456                          Documentary     April 22, 2020      92        7.1
## 457                          Documentary  November 27, 2020      80        7.1
## 458                    Mentalism special   October 19, 2018      49        7.1
## 459                          Documentary  December 27, 2019      73        7.1
## 460                          Documentary        May 4, 2018      40        7.1
## 461                          Documentary September 10, 2019      96        7.1
## 462                          Crime drama       May 14, 2021     106        7.1
## 463                          Documentary     April 20, 2019      97        7.1
## 464                          Documentary   October 27, 2020      94        7.1
## 465                          Documentary       May 26, 2017      78        7.1
## 466                          Documentary September 18, 2015      81        7.1
## 467                          Documentary        May 1, 2019      87        7.1
## 468                         One-man show  November 13, 2018      91        7.1
## 469                          Documentary     March 18, 2016      91        7.1
## 470                          Documentary   October 20, 2017      95        7.1
## 471                                Drama    January 7, 2021     126        7.1
## 472                          Documentary      April 6, 2018      31        7.1
## 473                          Documentary   November 2, 2018      58        7.1
## 474                          Documentary   October 15, 2020      41        7.1
## 475               Psychological thriller September 16, 2020     138        7.1
## 476                                Drama   January 29, 2021     112        7.1
## 477                          Documentary      July 24, 2019     114        7.1
## 478                                Drama   January 22, 2021     125        7.1
## 479                      Romantic comedy    August 17, 2018      99        7.1
## 480                          Documentary September 30, 2020      82        7.2
## 481                          Documentary September 23, 2016      98        7.2
## 482                                Drama September 15, 2017     136        7.2
## 483                          Documentary   January 18, 2019      97        7.2
## 484                          Documentary   October 28, 2016     107        7.2
## 485                          Documentary     April 10, 2020      92        7.2
## 486                          Documentary      March 8, 2018      39        7.2
## 487                      Romantic comedy  February 14, 2018     133        7.2
## 488                         Drama-Comedy  February 22, 2019      89        7.2
## 489                                Drama    October 5, 2018     124        7.2
## 490           Coming-of-age comedy-drama   October 18, 2019      99        7.2
## 491                                Drama        May 1, 2018     101        7.2
## 492                          Crime drama   January 18, 2019      97        7.2
## 493                               Comedy    October 9, 2020     124        7.2
## 494                                Drama     April 30, 2021     129        7.2
## 495                          Documentary      June 19, 2019     121        7.2
## 496                     Historical drama   November 1, 2019     140        7.2
## 497                            Making-of   October 29, 2019      13        7.2
## 498                                  War    October 7, 2016     108        7.2
## 499                          Documentary    August 10, 2018      11        7.2
## 500                               Biopic   October 25, 2019     118        7.3
## 501                          Crime drama   October 11, 2019     121        7.3
## 502                          Documentary September 13, 2016      24        7.3
## 503                          Documentary      July 17, 2020     100        7.3
## 504                          Documentary       May 12, 2017     101        7.3
## 505                                Drama       May 27, 2020     105        7.3
## 506                          Documentary       July 8, 2020      96        7.3
## 507                            Animation   October 13, 2020      47        7.3
## 508                     Action-adventure      June 28, 2017     121        7.3
## 509                          Crime drama September 12, 2018     100        7.3
## 510                             Thriller      July 31, 2020     149        7.3
## 511                          Documentary   January 11, 2019      64        7.3
## 512                          Documentary   February 8, 2019      64        7.3
## 513                          Documentary   October 28, 2020     114        7.3
## 514                    Animation / Short      March 8, 2020      15        7.3
## 515                          Documentary   October 14, 2016      79        7.3
## 516                          Documentary     April 29, 2016      90        7.3
## 517                              Western  November 16, 2018     132        7.3
## 518                          Documentary    October 6, 2017     105        7.3
## 519                         Comedy-drama      June 24, 2016      97        7.3
## 520                          Documentary       May 22, 2015      83        7.3
## 521                          Documentary    August 21, 2019     110        7.4
## 522                          Documentary   November 1, 2019      39        7.4
## 523                          Documentary September 29, 2017      40        7.4
## 524                          Documentary   January 31, 2020      85        7.4
## 525                          Documentary  February 12, 2019      26        7.4
## 526                         Concert Film  November 25, 2020      87        7.4
## 527                          Documentary   October 26, 2018      97        7.4
## 528                          Documentary       June 7, 2019     118        7.4
## 529                Aftershow / Interview  November 27, 2019      23        7.4
## 530                          Documentary      July 29, 2020      40        7.4
## 531                          Documentary   November 2, 2018      98        7.4
## 532                          Documentary      July 17, 2015      80        7.4
## 533                         Concert Film  November 22, 2017     108        7.5
## 534                          Documentary   October 14, 2020      79        7.5
## 535                          Documentary  September 7, 2018      74        7.5
## 536                          Documentary    October 2, 2020      90        7.5
## 537                          Documentary     April 17, 2019     137        7.5
## 538          Animation / Science Fiction    August 16, 2019      71        7.5
## 539                          Documentary   October 27. 2017      98        7.5
## 540                         Variety show  December 24, 2019      70        7.5
## 541                          Documentary September 13, 2018      99        7.5
## 542                          Documentary September 16. 2016      40        7.5
## 543                          Documentary      June 24, 2020     104        7.6
## 544                Anthology/Dark comedy  November 12, 2020     149        7.6
## 545                          Documentary September 21, 2018     124        7.6
## 546                          Documentary      June 12, 2019     144        7.6
## 547                          Documentary   October 18, 2019      85        7.6
## 548                          Documentary      July 27, 2018     100        7.6
## 549                          Documentary  September 9, 2020      94        7.6
## 550                                Drama  December 20, 2019     125        7.6
## 551                          Documentary      June 26, 2015      84        7.6
## 552                                Drama  February 21, 2020     117        7.6
## 553                      Musical / Short      June 27, 2019      15        7.7
## 554                            War drama   October 16, 2015     136        7.7
## 555                          Documentary     April 19, 2019      76        7.7
## 556                          Documentary     March 25, 2020     108        7.7
## 557                          Documentary  November 17, 2017      94        7.7
## 558                         Concert Film   October 12, 2016      90        7.7
## 559                            Making-of  February 11, 2020      72        7.7
## 560                                Drama  December 14, 2018     135        7.7
## 561                    Animation / Short  November 20, 2020      12        7.8
## 562                          Crime drama  November 27, 2019     209        7.8
## 563                                Drama   October 16, 2020     130        7.8
## 564                          Documentary     April 29, 2020      82        7.9
## 565                          Documentary     August 4, 2017     120        7.9
## 566                                Drama   December 6, 2019     136        7.9
## 567                          Documentary   November 4, 2016     112        7.9
## 568                          Documentary  December 21, 2018     105        8.0
## 569                          Documentary      July 14, 2017      89        8.1
## 570                          Documentary  September 7, 2020      85        8.1
## 571                          Documentary    August 26, 2020     106        8.1
## 572                          Documentary    October 7, 2016     100        8.2
## 573                          Documentary      June 19, 2020     107        8.2
## 574 Animation/Christmas/Comedy/Adventure  November 15, 2019      97        8.2
## 575                          Documentary     March 24, 2021      89        8.2
## 576                          Documentary   October 14, 2020     109        8.2
## 577                          Documentary  November 24, 2017     114        8.3
## 578                          Documentary   October 23, 2019      51        8.3
## 579                         Concert Film       May 20, 2020      85        8.4
## 580                         Concert Film  December 31, 2018     125        8.4
## 581                          Documentary    October 9, 2015      91        8.4
## 582                         One-man show  December 16, 2018     153        8.5
## 583                          Documentary   December 8, 2020      89        8.6
## 584                          Documentary    October 4, 2020      83        9.0
##                       Language
## 1             English/Japanese
## 2                      Spanish
## 3                      Italian
## 4                      English
## 5                        Hindi
## 6                        Hindi
## 7                      Turkish
## 8                      English
## 9                      English
## 10                       Hindi
## 11                     English
## 12                      Korean
## 13                  Indonesian
## 14                       Malay
## 15                     English
## 16                     Spanish
## 17                       Hindi
## 18                     English
## 19                      Korean
## 20                     English
## 21                     English
## 22                     English
## 23                     English
## 24                       Hindi
## 25                     English
## 26                     English
## 27                       Dutch
## 28                     English
## 29                      French
## 30                     Italian
## 31             English/Spanish
## 32                     English
## 33                      French
## 34                  Portuguese
## 35                     English
## 36                     Italian
## 37                      French
## 38                    Filipino
## 39                     English
## 40                      French
## 41                     English
## 42                     Italian
## 43                     English
## 44                      German
## 45                     English
## 46                       Hindi
## 47                      Polish
## 48                     English
## 49                     English
## 50                     English
## 51                      French
## 52                     English
## 53                     English
## 54                     Spanish
## 55                  Portuguese
## 56                     English
## 57                  Indonesian
## 58                     English
## 59                      Polish
## 60                   Norwegian
## 61                     English
## 62                     English
## 63                     English
## 64                  Indonesian
## 65                     English
## 66                     English
## 67                     English
## 68                     English
## 69                     English
## 70                     English
## 71                     Marathi
## 72                        Thai
## 73                     English
## 74                     English
## 75                     English
## 76                     English
## 77                     English
## 78                     English
## 79                     English
## 80                     English
## 81                     English
## 82                     English
## 83                     Italian
## 84                     English
## 85                     English
## 86                      French
## 87                     English
## 88                       Hindi
## 89                     Spanish
## 90                      French
## 91                     English
## 92                      French
## 93                     Spanish
## 94                     English
## 95                     English
## 96                     English
## 97                     Spanish
## 98                       Hindi
## 99                      German
## 100                    English
## 101                      Hindi
## 102                    English
## 103                     French
## 104                    English
## 105                    English
## 106                    English
## 107                    Italian
## 108                    English
## 109                    English
## 110                   Filipino
## 111                 Portuguese
## 112                    English
## 113                      Hindi
## 114                    English
## 115                    English
## 116                    English
## 117                    English
## 118                    Swedish
## 119                   Japanese
## 120                    English
## 121                    English
## 122                    English
## 123                    English
## 124                    English
## 125                    English
## 126                    English
## 127             Spanish/Basque
## 128                    English
## 129                 Portuguese
## 130                    English
## 131                    English
## 132                    English
## 133                    Turkish
## 134                    English
## 135                    English
## 136                    Italian
## 137                    English
## 138                    Spanish
## 139                    English
## 140                    English
## 141                    English
## 142                    English
## 143                    Italian
## 144                    English
## 145                    Spanish
## 146                    English
## 147                    English
## 148                      Hindi
## 149                    English
## 150                    English
## 151                    English
## 152                       Thai
## 153                    English
## 154                    English
## 155                     Polish
## 156                    English
## 157                    English
## 158                    English
## 159                    English
## 160                    English
## 161                    English
## 162                    Marathi
## 163                    English
## 164                    English
## 165                    English
## 166                    English
## 167                    English
## 168                    English
## 169                      Hindi
## 170                      Hindi
## 171                    English
## 172                    English
## 173                    English
## 174                    English
## 175                    English
## 176                    English
## 177                      Hindi
## 178                 Portuguese
## 179                     German
## 180                    English
## 181                    English
## 182                    English
## 183                    English
## 184                    English
## 185                    English
## 186                    English
## 187                      Dutch
## 188                    English
## 189                    English
## 190                     German
## 191                    Spanish
## 192                    English
## 193                    English
## 194                    English
## 195                    English
## 196                    English
## 197                    English
## 198                    English
## 199                    English
## 200                    English
## 201                      Hindi
## 202                     French
## 203                    English
## 204                    English
## 205                    English
## 206                    English
## 207                    Italian
## 208                    English
## 209                    Italian
## 210                    English
## 211                      Hindi
## 212                    English
## 213                    English
## 214                    English
## 215                    English
## 216                    English
## 217                    English
## 218                    English
## 219                    English
## 220                    English
## 221                    English
## 222                    English
## 223                    English
## 224                    English
## 225                    English
## 226                    English
## 227                    English
## 228                    English
## 229                    English
## 230                    English
## 231                    English
## 232                    English
## 233                    English
## 234                     French
## 235                    English
## 236                    Turkish
## 237                 Indonesian
## 238                 Portuguese
## 239                    English
## 240                    English
## 241                    English
## 242                      Hindi
## 243                    Spanish
## 244                    English
## 245                    English
## 246                    Italian
## 247                    Spanish
## 248                    English
## 249                 Indonesian
## 250                    Turkish
## 251                    English
## 252                    English
## 253                     French
## 254                    English
## 255                    Spanish
## 256                    English
## 257                    English
## 258                    English
## 259                    English
## 260                    English
## 261                    English
## 262                    English
## 263                    English
## 264            English/Spanish
## 265                    English
## 266                    English
## 267                    English
## 268                    English
## 269                    English
## 270                    English
## 271                    English
## 272                 Portuguese
## 273                     French
## 274                 Indonesian
## 275                      Hindi
## 276                    English
## 277                    Spanish
## 278                    English
## 279                 Portuguese
## 280                    English
## 281                    English
## 282                    English
## 283                    English
## 284                    English
## 285                   Japanese
## 286                    English
## 287                    English
## 288           English/Japanese
## 289                     Korean
## 290                    English
## 291                    English
## 292                    English
## 293                     French
## 294                    English
## 295                    English
## 296            English/Spanish
## 297                    Spanish
## 298                    English
## 299                    English
## 300                    English
## 301                     German
## 302                    English
## 303                 Indonesian
## 304                    English
## 305                    English
## 306                    English
## 307                    English
## 308                     French
## 309                    English
## 310                    English
## 311                    English
## 312                 Indonesian
## 313                    English
## 314                    Spanish
## 315                    English
## 316                    English
## 317            Spanish/Catalan
## 318                    English
## 319                    English
## 320                    English
## 321            English/Spanish
## 322                    English
## 323                    English
## 324                   Japanese
## 325                     French
## 326                    English
## 327                    English
## 328                      Hindi
## 329                    English
## 330                    English
## 331                    English
## 332                    English
## 333                    English
## 334                    English
## 335            English/Swedish
## 336                      Hindi
## 337                    English
## 338                    English
## 339                    Spanish
## 340                    English
## 341                     French
## 342                    English
## 343                    English
## 344 English/Taiwanese/Mandarin
## 345                    English
## 346                    English
## 347                    English
## 348                    English
## 349                      Hindi
## 350                    Spanish
## 351                    Spanish
## 352                    English
## 353                    English
## 354                    English
## 355                      Hindi
## 356                    English
## 357                    English
## 358                    English
## 359                     Korean
## 360                    English
## 361                    English
## 362                    Spanish
## 363                    English
## 364                    English
## 365                   Japanese
## 366                      Hindi
## 367                    English
## 368                    English
## 369                   Japanese
## 370                    English
## 371                    English
## 372                    English
## 373                    English
## 374                    English
## 375                    English
## 376               Thia/English
## 377                    English
## 378                 Portuguese
## 379                   Japanese
## 380                    English
## 381                    English
## 382                    English
## 383                     Korean
## 384                    Turkish
## 385                    Spanish
## 386                    English
## 387                    English
## 388                    English
## 389                      Hindi
## 390                    English
## 391                    Spanish
## 392                    English
## 393                    Spanish
## 394                    English
## 395           English/Mandarin
## 396                    English
## 397                    English
## 398                      Hindi
## 399                    English
## 400                    English
## 401                     French
## 402                    English
## 403                    English
## 404                    English
## 405                    English
## 406                      Hindi
## 407                    English
## 408                    English
## 409                    Italian
## 410                    English
## 411                   Georgian
## 412                    English
## 413                     French
## 414                      Hindi
## 415                    English
## 416                     French
## 417                    English
## 418                    English
## 419                    English
## 420                 Portuguese
## 421                    English
## 422                    English
## 423                    English
## 424                      Hindi
## 425                    English
## 426                    English
## 427                    English
## 428                    English
## 429                    English
## 430                    English
## 431                    English
## 432                    English
## 433                    English
## 434                    English
## 435                    English
## 436                    English
## 437                    Spanish
## 438                    Spanish
## 439                    English
## 440                    English
## 441                    English
## 442                    English
## 443                    English
## 444                    English
## 445                    English
## 446                    English
## 447                    English
## 448                    Italian
## 449                    English
## 450                    English
## 451                 Indonesian
## 452                    English
## 453                    English
## 454                    English
## 455                    English
## 456                    English
## 457                    English
## 458                    English
## 459                    Spanish
## 460                    English
## 461                    English
## 462                      Dutch
## 463                    English
## 464                    Spanish
## 465                    English
## 466                    English
## 467                    English
## 468                    English
## 469                    English
## 470                    English
## 471                    English
## 472                    English
## 473                    English
## 474                    Bengali
## 475                    English
## 476                    English
## 477                    English
## 478                    English
## 479                    English
## 480                    English
## 481                    English
## 482       Khmer/English/French
## 483                    English
## 484                    English
## 485                    English
## 486              English/Hindi
## 487                      Hindi
## 488                    English
## 489                    English
## 490                    Spanish
## 491                      Tamil
## 492                      Hindi
## 493                    English
## 494                    Marathi
## 495                 Portuguese
## 496                    English
## 497                    English
## 498                    English
## 499                    English
## 500                    English
## 501                    English
## 502                    English
## 503                    English
## 504                    English
## 505                    Spanish
## 506            Spanish/English
## 507                    English
## 508             English/Korean
## 509                    Italian
## 510                      Hindi
## 511            English/Spanish
## 512                    English
## 513             English/Arabic
## 514                    English
## 515           English/Mandarin
## 516            English/Russian
## 517                    English
## 518                    English
## 519                    English
## 520                    English
## 521                    English
## 522                    English
## 523                    English
## 524                    English
## 525              English/Hindi
## 526                    English
## 527                    English
## 528                    English
## 529                    English
## 530                    English
## 531                    English
## 532                    English
## 533                    English
## 534                     Korean
## 535                    English
## 536                    English
## 537                    English
## 538                    English
## 539                    English
## 540                    English
## 541                    English
## 542                    English
## 543                    English
## 544                      Hindi
## 545                    English
## 546                    English
## 547                    English
## 548                    English
## 549                    English
## 550                    English
## 551                    English
## 552                      Hindi
## 553                    English
## 554               English/Akan
## 555                    English
## 556                    English
## 557                    English
## 558                    English
## 559                    Spanish
## 560                    Spanish
## 561                    English
## 562                    English
## 563                    English
## 564                    English
## 565                    English
## 566                    English
## 567                    English
## 568                    English
## 569                    English
## 570                    English
## 571                    English
## 572                    English
## 573                    English
## 574                    English
## 575                    English
## 576                    Spanish
## 577                    English
## 578                    English
## 579                    English
## 580                    English
## 581   English/Ukranian/Russian
## 582                    English
## 583                 Portuguese
## 584                    English
cummax(df$Runtime)
##   [1]  58  81  81  94  94 147 147 149 149 149 149 149 149 149 149 149 149 149
##  [19] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
##  [37] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
##  [55] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
##  [73] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
##  [91] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
## [109] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
## [127] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
## [145] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
## [163] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
## [181] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
## [199] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
## [217] 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149 149
## [235] 149 149 149 149 149 149 149 149 149 149 149 149 149 151 151 151 151 151
## [253] 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151
## [271] 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151
## [289] 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151
## [307] 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151 151
## [325] 151 151 151 151 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [343] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [361] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [379] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [397] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [415] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [433] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [451] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [469] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [487] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [505] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [523] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [541] 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155 155
## [559] 155 155 155 209 209 209 209 209 209 209 209 209 209 209 209 209 209 209
## [577] 209 209 209 209 209 209 209 209
cummax(df$IMDB.Score)
##   [1] 2.5 2.6 2.6 3.2 3.4 3.5 3.7 3.7 3.9 4.1 4.1 4.1 4.1 4.2 4.2 4.3 4.3 4.3
##  [19] 4.3 4.4 4.4 4.4 4.4 4.4 4.4 4.5 4.5 4.5 4.5 4.6 4.6 4.6 4.6 4.6 4.6 4.6
##  [37] 4.6 4.7 4.7 4.7 4.7 4.7 4.7 4.8 4.8 4.8 4.8 4.8 4.8 4.8 4.9 4.9 4.9 4.9
##  [55] 5.0 5.0 5.0 5.0 5.0 5.1 5.1 5.1 5.1 5.1 5.1 5.2 5.2 5.2 5.2 5.2 5.2 5.2
##  [73] 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.3 5.3 5.3 5.3 5.3 5.3
##  [91] 5.3 5.3 5.3 5.3 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.5
## [109] 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5
## [127] 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.7 5.7 5.7
## [145] 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.8
## [163] 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8
## [181] 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.9 5.9 5.9 5.9 5.9 5.9 5.9
## [199] 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0
## [217] 6.0 6.0 6.0 6.0 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1
## [235] 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2
## [253] 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3
## [271] 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3
## [289] 6.3 6.3 6.3 6.3 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4
## [307] 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.5 6.5 6.5 6.5
## [325] 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5
## [343] 6.5 6.5 6.5 6.5 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6
## [361] 6.6 6.6 6.6 6.6 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7
## [379] 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.8 6.8 6.8 6.8 6.8 6.8 6.8
## [397] 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.9
## [415] 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9
## [433] 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0
## [451] 7.0 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1
## [469] 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.2 7.2 7.2 7.2 7.2 7.2 7.2
## [487] 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.3 7.3 7.3 7.3 7.3
## [505] 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.4 7.4
## [523] 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5
## [541] 7.5 7.5 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.7 7.7 7.7 7.7 7.7 7.7
## [559] 7.7 7.7 7.8 7.8 7.8 7.9 7.9 7.9 7.9 8.0 8.1 8.1 8.1 8.2 8.2 8.2 8.2 8.2
## [577] 8.3 8.3 8.4 8.4 8.4 8.5 8.6 9.0
cummin(df$Runtime)
##   [1] 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 25 25 25 25 25 25 25 25 25 25
##  [26] 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25  4  4  4  4  4  4  4  4  4  4
##  [51]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
##  [76]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [101]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [126]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [151]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [176]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [201]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [226]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [251]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [276]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [301]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [326]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [351]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [376]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [401]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [426]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [451]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [476]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [501]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [526]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [551]  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4
## [576]  4  4  4  4  4  4  4  4  4
cummin(df$IMDB.Score)
##   [1] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
##  [19] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
##  [37] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
##  [55] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
##  [73] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
##  [91] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [109] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [127] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [145] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [163] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [181] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [199] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [217] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [235] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [253] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [271] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [289] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [307] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [325] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [343] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [361] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [379] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [397] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [415] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [433] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [451] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [469] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [487] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [505] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [523] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [541] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [559] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
## [577] 2.5 2.5 2.5 2.5 2.5 2.5 2.5 2.5
cumsum(df$Runtime)
##   [1]    58   139   218   312   402   549   661   810   883  1022  1080  1192
##  [13]  1289  1390  1480  1505  1649  1764  1866  1966  2030  2127  2226  2346
##  [25]  2451  2540  2637  2744  2843  2938  2975  3064  3147  3193  3278  3366
##  [37]  3452  3557  3652  3732  3736  3829  3929  4035  4132  4238  4341  4421
##  [49]  4522  4641  4721  4810  4904  4997  5093  5206  5292  5392  5494  5580
##  [61]  5684  5772  5869  5974  6064  6163  6173  6279  6377  6471  6583  6700
##  [73]  6770  6851  6954  7048  7146  7277  7364  7424  7536  7638  7737  7853
##  [85]  7945  8028  8125  8237  8353  8455  8576  8671  8764  8856  8954  9039
##  [97]  9117  9237  9329  9430  9549  9650  9762  9858  9972 10069 10170 10226
## [109] 10326 10420 10514 10535 10639 10702 10802 10928 11034 11120 11262 11370
## [121] 11472 11564 11647 11741 11833 11936 12025 12120 12223 12320 12445 12536
## [133] 12626 12675 12773 12880 12998 13092 13195 13281 13364 13461 13560 13664
## [145] 13766 13855 13953 14078 14167 14261 14355 14440 14474 14560 14651 14759
## [157] 14854 14954 15044 15156 15242 15366 15473 15565 15686 15776 15880 15972
## [169] 16086 16184 16279 16357 16464 16556 16651 16747 16865 16970 17064 17116
## [181] 17221 17316 17416 17513 17602 17704 17800 17931 18020 18113 18224 18299
## [193] 18419 18515 18663 18757 18864 18896 19000 19023 19134 19217 19270 19365
## [205] 19497 19595 19703 19809 19913 20003 20109 20199 20296 20409 20532 20647
## [217] 20752 20853 20955 21077 21205 21287 21389 21469 21563 21686 21790 21875
## [229] 21959 22062 22157 22257 22346 22462 22580 22676 22790 22889 22976 23068
## [241] 23158 23253 23349 23442 23484 23576 23682 23833 23934 24048 24138 24253
## [253] 24345 24417 24556 24654 24746 24857 24955 25059 25154 25242 25344 25374
## [265] 25473 25602 25689 25806 25910 26021 26128 26225 26323 26413 26514 26586
## [277] 26669 26787 26831 26944 27030 27138 27223 27325 27476 27574 27661 27781
## [289] 27915 28024 28109 28212 28306 28403 28491 28528 28640 28742 28842 28938
## [301] 29051 29067 29186 29283 29364 29462 29557 29653 29760 29801 29888 29989
## [313] 30086 30189 30279 30404 30520 30619 30701 30798 30826 30934 31027 31101
## [325] 31161 31170 31191 31291 31446 31501 31624 31727 31820 31939 31979 32099
## [337] 32197 32301 32392 32487 32588 32693 32776 32867 32950 32967 33053 33177
## [349] 33271 33373 33491 33570 33704 33830 33928 34017 34075 34158 34294 34392
## [361] 34506 34605 34735 34767 34871 35013 35105 35191 35297 35392 35483 35572
## [373] 35689 35779 35896 35976 36063 36164 36183 36289 36343 36454 36586 36683
## [385] 36789 36900 37024 37140 37252 37396 37472 37573 37665 37684 37723 37825
## [397] 37914 38019 38120 38190 38286 38371 38410 38489 38562 38676 38797 38825
## [409] 38920 39042 39065 39172 39270 39378 39470 39570 39667 39674 39770 39870
## [421] 40002 40105 40226 40340 40397 40492 40575 40592 40697 40828 40858 40970
## [433] 41056 41156 41170 41279 41307 41371 41465 41496 41595 41703 41751 41835
## [445] 41905 41932 41977 42094 42198 42306 42427 42463 42493 42540 42650 42742
## [457] 42822 42871 42944 42984 43080 43186 43283 43377 43455 43536 43623 43714
## [469] 43805 43900 44026 44057 44115 44156 44294 44406 44520 44645 44744 44826
## [481] 44924 45060 45157 45264 45356 45395 45528 45617 45741 45840 45941 46038
## [493] 46162 46291 46412 46552 46565 46673 46684 46802 46923 46947 47047 47148
## [505] 47253 47349 47396 47517 47617 47766 47830 47894 48008 48023 48102 48192
## [517] 48324 48429 48526 48609 48719 48758 48798 48883 48909 48996 49093 49211
## [529] 49234 49274 49372 49452 49560 49639 49713 49803 49940 50011 50109 50179
## [541] 50278 50318 50422 50571 50695 50839 50924 51024 51118 51243 51327 51444
## [553] 51459 51595 51671 51779 51873 51963 52035 52170 52182 52391 52521 52603
## [565] 52723 52859 52971 53076 53165 53250 53356 53456 53563 53660 53749 53858
## [577] 53972 54023 54108 54233 54324 54477 54566 54649
cumsum(df$IMDB.Score)
##   [1]    2.5    5.1    7.7   10.9   14.3   17.8   21.5   25.2   29.1   33.2
##  [11]   37.3   41.4   45.5   49.7   53.9   58.2   62.5   66.8   71.1   75.5
##  [21]   79.9   84.3   88.7   93.1   97.5  102.0  106.5  111.0  115.5  120.1
##  [31]  124.7  129.3  133.9  138.5  143.1  147.7  152.3  157.0  161.7  166.4
##  [41]  171.1  175.8  180.5  185.3  190.1  194.9  199.7  204.5  209.3  214.1
##  [51]  219.0  223.9  228.8  233.7  238.7  243.7  248.7  253.7  258.7  263.8
##  [61]  268.9  274.0  279.1  284.2  289.3  294.5  299.7  304.9  310.1  315.3
##  [71]  320.5  325.7  330.9  336.1  341.3  346.5  351.7  356.9  362.1  367.3
##  [81]  372.5  377.7  382.9  388.1  393.4  398.7  404.0  409.3  414.6  419.9
##  [91]  425.2  430.5  435.8  441.1  446.5  451.9  457.3  462.7  468.1  473.5
## [101]  478.9  484.3  489.7  495.1  500.5  505.9  511.3  516.8  522.3  527.8
## [111]  533.3  538.8  544.3  549.8  555.3  560.8  566.3  571.8  577.3  582.8
## [121]  588.3  593.8  599.3  604.8  610.3  615.8  621.4  627.0  632.6  638.2
## [131]  643.8  649.4  655.0  660.6  666.2  671.8  677.4  683.0  688.6  694.2
## [141]  699.8  705.5  711.2  716.9  722.6  728.3  734.0  739.7  745.4  751.1
## [151]  756.8  762.5  768.2  773.9  779.6  785.3  791.0  796.7  802.4  808.1
## [161]  813.8  819.6  825.4  831.2  837.0  842.8  848.6  854.4  860.2  866.0
## [171]  871.8  877.6  883.4  889.2  895.0  900.8  906.6  912.4  918.2  924.0
## [181]  929.8  935.6  941.4  947.2  953.0  958.8  964.6  970.4  976.2  982.0
## [191]  987.8  993.7  999.6 1005.5 1011.4 1017.3 1023.2 1029.1 1035.0 1040.9
## [201] 1046.8 1052.7 1058.6 1064.5 1070.4 1076.3 1082.2 1088.2 1094.2 1100.2
## [211] 1106.2 1112.2 1118.2 1124.2 1130.2 1136.2 1142.2 1148.2 1154.2 1160.2
## [221] 1166.3 1172.4 1178.5 1184.6 1190.7 1196.8 1202.9 1209.0 1215.1 1221.2
## [231] 1227.3 1233.4 1239.5 1245.6 1251.7 1257.8 1263.9 1270.0 1276.1 1282.2
## [241] 1288.3 1294.4 1300.5 1306.6 1312.8 1319.0 1325.2 1331.4 1337.6 1343.8
## [251] 1350.0 1356.2 1362.4 1368.6 1374.8 1381.0 1387.2 1393.4 1399.6 1405.8
## [261] 1412.0 1418.2 1424.5 1430.8 1437.1 1443.4 1449.7 1456.0 1462.3 1468.6
## [271] 1474.9 1481.2 1487.5 1493.8 1500.1 1506.4 1512.7 1519.0 1525.3 1531.6
## [281] 1537.9 1544.2 1550.5 1556.8 1563.1 1569.4 1575.7 1582.0 1588.3 1594.6
## [291] 1600.9 1607.2 1613.6 1620.0 1626.4 1632.8 1639.2 1645.6 1652.0 1658.4
## [301] 1664.8 1671.2 1677.6 1684.0 1690.4 1696.8 1703.2 1709.6 1716.0 1722.4
## [311] 1728.8 1735.2 1741.6 1748.0 1754.4 1760.8 1767.2 1773.6 1780.0 1786.4
## [321] 1792.9 1799.4 1805.9 1812.4 1818.9 1825.4 1831.9 1838.4 1844.9 1851.4
## [331] 1857.9 1864.4 1870.9 1877.4 1883.9 1890.4 1896.9 1903.4 1909.9 1916.4
## [341] 1922.9 1929.4 1935.9 1942.4 1948.9 1955.4 1962.0 1968.6 1975.2 1981.8
## [351] 1988.4 1995.0 2001.6 2008.2 2014.8 2021.4 2028.0 2034.6 2041.2 2047.8
## [361] 2054.4 2061.0 2067.6 2074.2 2080.9 2087.6 2094.3 2101.0 2107.7 2114.4
## [371] 2121.1 2127.8 2134.5 2141.2 2147.9 2154.6 2161.3 2168.0 2174.7 2181.4
## [381] 2188.1 2194.8 2201.5 2208.2 2214.9 2221.6 2228.3 2235.0 2241.7 2248.5
## [391] 2255.3 2262.1 2268.9 2275.7 2282.5 2289.3 2296.1 2302.9 2309.7 2316.5
## [401] 2323.3 2330.1 2336.9 2343.7 2350.5 2357.3 2364.1 2370.9 2377.7 2384.5
## [411] 2391.3 2398.1 2404.9 2411.8 2418.7 2425.6 2432.5 2439.4 2446.3 2453.2
## [421] 2460.1 2467.0 2473.9 2480.8 2487.7 2494.6 2501.5 2508.4 2515.3 2522.2
## [431] 2529.1 2536.0 2543.0 2550.0 2557.0 2564.0 2571.0 2578.0 2585.0 2592.0
## [441] 2599.0 2606.0 2613.0 2620.0 2627.0 2634.0 2641.0 2648.0 2655.0 2662.0
## [451] 2669.0 2676.1 2683.2 2690.3 2697.4 2704.5 2711.6 2718.7 2725.8 2732.9
## [461] 2740.0 2747.1 2754.2 2761.3 2768.4 2775.5 2782.6 2789.7 2796.8 2803.9
## [471] 2811.0 2818.1 2825.2 2832.3 2839.4 2846.5 2853.6 2860.7 2867.8 2875.0
## [481] 2882.2 2889.4 2896.6 2903.8 2911.0 2918.2 2925.4 2932.6 2939.8 2947.0
## [491] 2954.2 2961.4 2968.6 2975.8 2983.0 2990.2 2997.4 3004.6 3011.8 3019.1
## [501] 3026.4 3033.7 3041.0 3048.3 3055.6 3062.9 3070.2 3077.5 3084.8 3092.1
## [511] 3099.4 3106.7 3114.0 3121.3 3128.6 3135.9 3143.2 3150.5 3157.8 3165.1
## [521] 3172.5 3179.9 3187.3 3194.7 3202.1 3209.5 3216.9 3224.3 3231.7 3239.1
## [531] 3246.5 3253.9 3261.4 3268.9 3276.4 3283.9 3291.4 3298.9 3306.4 3313.9
## [541] 3321.4 3328.9 3336.5 3344.1 3351.7 3359.3 3366.9 3374.5 3382.1 3389.7
## [551] 3397.3 3404.9 3412.6 3420.3 3428.0 3435.7 3443.4 3451.1 3458.8 3466.5
## [561] 3474.3 3482.1 3489.9 3497.8 3505.7 3513.6 3521.5 3529.5 3537.6 3545.7
## [571] 3553.8 3562.0 3570.2 3578.4 3586.6 3594.8 3603.1 3611.4 3619.8 3628.2
## [581] 3636.6 3645.1 3653.7 3662.7
cumprod(df$Runtime)
##   [1]  5.800000e+01  4.698000e+03  3.711420e+05  3.488735e+07  3.139861e+09
##   [6]  4.615596e+11  5.169468e+13  7.702507e+15  5.622830e+17  7.815734e+19
##  [11]  4.533126e+21  5.077101e+23  4.924788e+25  4.974035e+27  4.476632e+29
##  [16]  1.119158e+31  1.611587e+33  1.853326e+35  1.890392e+37  1.890392e+39
##  [21]  1.209851e+41  1.173555e+43  1.161820e+45  1.394184e+47  1.463893e+49
##  [26]  1.302865e+51  1.263779e+53  1.352243e+55  1.338721e+57  1.271785e+59
##  [31]  4.705604e+60  4.187988e+62  3.476030e+64  1.598974e+66  1.359128e+68
##  [36]  1.196032e+70  1.028588e+72  1.080017e+74  1.026016e+76  8.208131e+77
##  [41]  3.283252e+78  3.053425e+80  3.053425e+82  3.236630e+84  3.139531e+86
##  [46]  3.327903e+88  3.427740e+90  2.742192e+92  2.769614e+94  3.295841e+96
##  [51]  2.636673e+98 2.346639e+100 2.205840e+102 2.051431e+104 1.969374e+106
##  [56] 2.225393e+108 1.913838e+110 1.913838e+112 1.952115e+114 1.678819e+116
##  [61] 1.745971e+118 1.536455e+120 1.490361e+122 1.564879e+124 1.408391e+126
##  [66] 1.394307e+128 1.394307e+129 1.477966e+131 1.448406e+133 1.361502e+135
##  [71] 1.524882e+137 1.784112e+139 1.248879e+141 1.011592e+143 1.041939e+145
##  [76] 9.794231e+146 9.598346e+148 1.257383e+151 1.093923e+153 6.563541e+154
##  [81] 7.351166e+156 7.498189e+158 7.423207e+160 8.610920e+162 7.922047e+164
##  [86] 6.575299e+166 6.378040e+168 7.143405e+170 8.286349e+172 8.452076e+174
##  [91] 1.022701e+177 9.715662e+178 9.035566e+180 8.312720e+182 8.146466e+184
##  [96] 6.924496e+186 5.401107e+188 6.481328e+190 5.962822e+192 6.022450e+194
## [101] 7.166716e+196 7.238383e+198 8.106989e+200 7.782709e+202 8.872289e+204
## [106] 8.606120e+206 8.692181e+208 4.867621e+210 4.867621e+212 4.575564e+214
## [111] 4.301030e+216 9.032164e+217 9.393450e+219 5.917874e+221 5.917874e+223
## [116] 7.456521e+225 7.903912e+227 6.797364e+229 9.652257e+231 1.042444e+234
## [121] 1.063293e+236 9.782293e+237 8.119303e+239 7.632145e+241 7.021573e+243
## [126] 7.232220e+245 6.436676e+247 6.114842e+249 6.298287e+251 6.109339e+253
## [131] 7.636674e+255 6.949373e+257 6.254436e+259 3.064673e+261 3.003380e+263
## [136] 3.213617e+265 3.792068e+267 3.564544e+269 3.671480e+271 3.157473e+273
## [141] 2.620702e+275 2.542081e+277 2.516660e+279 2.617327e+281 2.669673e+283
## [146] 2.376009e+285 2.328489e+287 2.910611e+289 2.590444e+291 2.435018e+293
## [151] 2.288916e+295 1.945579e+297 6.614969e+298 5.688873e+300 5.176874e+302
## [156] 5.591024e+304 5.311473e+306           Inf           Inf           Inf
## [161]           Inf           Inf           Inf           Inf           Inf
## [166]           Inf           Inf           Inf           Inf           Inf
## [171]           Inf           Inf           Inf           Inf           Inf
## [176]           Inf           Inf           Inf           Inf           Inf
## [181]           Inf           Inf           Inf           Inf           Inf
## [186]           Inf           Inf           Inf           Inf           Inf
## [191]           Inf           Inf           Inf           Inf           Inf
## [196]           Inf           Inf           Inf           Inf           Inf
## [201]           Inf           Inf           Inf           Inf           Inf
## [206]           Inf           Inf           Inf           Inf           Inf
## [211]           Inf           Inf           Inf           Inf           Inf
## [216]           Inf           Inf           Inf           Inf           Inf
## [221]           Inf           Inf           Inf           Inf           Inf
## [226]           Inf           Inf           Inf           Inf           Inf
## [231]           Inf           Inf           Inf           Inf           Inf
## [236]           Inf           Inf           Inf           Inf           Inf
## [241]           Inf           Inf           Inf           Inf           Inf
## [246]           Inf           Inf           Inf           Inf           Inf
## [251]           Inf           Inf           Inf           Inf           Inf
## [256]           Inf           Inf           Inf           Inf           Inf
## [261]           Inf           Inf           Inf           Inf           Inf
## [266]           Inf           Inf           Inf           Inf           Inf
## [271]           Inf           Inf           Inf           Inf           Inf
## [276]           Inf           Inf           Inf           Inf           Inf
## [281]           Inf           Inf           Inf           Inf           Inf
## [286]           Inf           Inf           Inf           Inf           Inf
## [291]           Inf           Inf           Inf           Inf           Inf
## [296]           Inf           Inf           Inf           Inf           Inf
## [301]           Inf           Inf           Inf           Inf           Inf
## [306]           Inf           Inf           Inf           Inf           Inf
## [311]           Inf           Inf           Inf           Inf           Inf
## [316]           Inf           Inf           Inf           Inf           Inf
## [321]           Inf           Inf           Inf           Inf           Inf
## [326]           Inf           Inf           Inf           Inf           Inf
## [331]           Inf           Inf           Inf           Inf           Inf
## [336]           Inf           Inf           Inf           Inf           Inf
## [341]           Inf           Inf           Inf           Inf           Inf
## [346]           Inf           Inf           Inf           Inf           Inf
## [351]           Inf           Inf           Inf           Inf           Inf
## [356]           Inf           Inf           Inf           Inf           Inf
## [361]           Inf           Inf           Inf           Inf           Inf
## [366]           Inf           Inf           Inf           Inf           Inf
## [371]           Inf           Inf           Inf           Inf           Inf
## [376]           Inf           Inf           Inf           Inf           Inf
## [381]           Inf           Inf           Inf           Inf           Inf
## [386]           Inf           Inf           Inf           Inf           Inf
## [391]           Inf           Inf           Inf           Inf           Inf
## [396]           Inf           Inf           Inf           Inf           Inf
## [401]           Inf           Inf           Inf           Inf           Inf
## [406]           Inf           Inf           Inf           Inf           Inf
## [411]           Inf           Inf           Inf           Inf           Inf
## [416]           Inf           Inf           Inf           Inf           Inf
## [421]           Inf           Inf           Inf           Inf           Inf
## [426]           Inf           Inf           Inf           Inf           Inf
## [431]           Inf           Inf           Inf           Inf           Inf
## [436]           Inf           Inf           Inf           Inf           Inf
## [441]           Inf           Inf           Inf           Inf           Inf
## [446]           Inf           Inf           Inf           Inf           Inf
## [451]           Inf           Inf           Inf           Inf           Inf
## [456]           Inf           Inf           Inf           Inf           Inf
## [461]           Inf           Inf           Inf           Inf           Inf
## [466]           Inf           Inf           Inf           Inf           Inf
## [471]           Inf           Inf           Inf           Inf           Inf
## [476]           Inf           Inf           Inf           Inf           Inf
## [481]           Inf           Inf           Inf           Inf           Inf
## [486]           Inf           Inf           Inf           Inf           Inf
## [491]           Inf           Inf           Inf           Inf           Inf
## [496]           Inf           Inf           Inf           Inf           Inf
## [501]           Inf           Inf           Inf           Inf           Inf
## [506]           Inf           Inf           Inf           Inf           Inf
## [511]           Inf           Inf           Inf           Inf           Inf
## [516]           Inf           Inf           Inf           Inf           Inf
## [521]           Inf           Inf           Inf           Inf           Inf
## [526]           Inf           Inf           Inf           Inf           Inf
## [531]           Inf           Inf           Inf           Inf           Inf
## [536]           Inf           Inf           Inf           Inf           Inf
## [541]           Inf           Inf           Inf           Inf           Inf
## [546]           Inf           Inf           Inf           Inf           Inf
## [551]           Inf           Inf           Inf           Inf           Inf
## [556]           Inf           Inf           Inf           Inf           Inf
## [561]           Inf           Inf           Inf           Inf           Inf
## [566]           Inf           Inf           Inf           Inf           Inf
## [571]           Inf           Inf           Inf           Inf           Inf
## [576]           Inf           Inf           Inf           Inf           Inf
## [581]           Inf           Inf           Inf           Inf
cumprod(df$IMDB.Score)
##   [1]  2.500000e+00  6.500000e+00  1.690000e+01  5.408000e+01  1.838720e+02
##   [6]  6.435520e+02  2.381142e+03  8.810227e+03  3.435988e+04  1.408755e+05
##  [11]  5.775897e+05  2.368118e+06  9.709282e+06  4.077899e+07  1.712717e+08
##  [16]  7.364685e+08  3.166814e+09  1.361730e+10  5.855440e+10  2.576394e+11
##  [21]  1.133613e+12  4.987898e+12  2.194675e+13  9.656570e+13  4.248891e+14
##  [26]  1.912001e+15  8.604004e+15  3.871802e+16  1.742311e+17  8.014630e+17
##  [31]  3.686730e+18  1.695896e+19  7.801120e+19  3.588515e+20  1.650717e+21
##  [36]  7.593298e+21  3.492917e+22  1.641671e+23  7.715854e+23  3.626451e+24
##  [41]  1.704432e+25  8.010831e+25  3.765091e+26  1.807244e+27  8.674769e+27
##  [46]  4.163889e+28  1.998667e+29  9.593601e+29  4.604928e+30  2.210366e+31
##  [51]  1.083079e+32  5.307088e+32  2.600473e+33  1.274232e+34  6.371159e+34
##  [56]  3.185579e+35  1.592790e+36  7.963949e+36  3.981974e+37  2.030807e+38
##  [61]  1.035712e+39  5.282129e+39  2.693886e+40  1.373882e+41  7.006797e+41
##  [66]  3.643534e+42  1.894638e+43  9.852116e+43  5.123101e+44  2.664012e+45
##  [71]  1.385286e+46  7.203489e+46  3.745814e+47  1.947823e+48  1.012868e+49
##  [76]  5.266915e+49  2.738796e+50  1.424174e+51  7.405703e+51  3.850966e+52
##  [81]  2.002502e+53  1.041301e+54  5.414766e+54  2.815678e+55  1.492309e+56
##  [86]  7.909240e+56  4.191897e+57  2.221706e+58  1.177504e+59  6.240771e+59
##  [91]  3.307609e+60  1.753033e+61  9.291073e+61  4.924269e+62  2.659105e+63
##  [96]  1.435917e+64  7.753950e+64  4.187133e+65  2.261052e+66  1.220968e+67
## [101]  6.593227e+67  3.560343e+68  1.922585e+69  1.038196e+70  5.606258e+70
## [106]  3.027379e+71  1.634785e+72  8.991317e+72  4.945224e+73  2.719873e+74
## [111]  1.495930e+75  8.227617e+75  4.525189e+76  2.488854e+77  1.368870e+78
## [116]  7.528784e+78  4.140831e+79  2.277457e+80  1.252601e+81  6.889308e+81
## [121]  3.789119e+82  2.084016e+83  1.146209e+84  6.304147e+84  3.467281e+85
## [126]  1.907004e+86  1.067922e+87  5.980366e+87  3.349005e+88  1.875443e+89
## [131]  1.050248e+90  5.881389e+90  3.293578e+91  1.844403e+92  1.032866e+93
## [136]  5.784049e+93  3.239068e+94  1.813878e+95  1.015772e+96  5.688321e+96
## [141]  3.185460e+97  1.815712e+98  1.034956e+99  5.899248e+99 3.362572e+100
## [146] 1.916666e+101 1.092499e+102 6.227247e+102 3.549531e+103 2.023233e+104
## [151] 1.153243e+105 6.573483e+105 3.746885e+106 2.135725e+107 1.217363e+108
## [156] 6.938969e+108 3.955212e+109 2.254471e+110 1.285048e+111 7.324776e+111
## [161] 4.175123e+112 2.421571e+113 1.404511e+114 8.146165e+114 4.724776e+115
## [166] 2.740370e+116 1.589415e+117 9.218604e+117 5.346791e+118 3.101139e+119
## [171] 1.798660e+120 1.043223e+121 6.050693e+121 3.509402e+122 2.035453e+123
## [176] 1.180563e+124 6.847265e+124 3.971414e+125 2.303420e+126 1.335984e+127
## [181] 7.748704e+127 4.494249e+128 2.606664e+129 1.511865e+130 8.768818e+130
## [186] 5.085915e+131 2.949830e+132 1.710902e+133 9.923230e+133 5.755473e+134
## [191] 3.338174e+135 1.969523e+136 1.162019e+137 6.855909e+137 4.044987e+138
## [196] 2.386542e+139 1.408060e+140 8.307553e+140 4.901456e+141 2.891859e+142
## [201] 1.706197e+143 1.006656e+144 5.939271e+144 3.504170e+145 2.067460e+146
## [206] 1.219802e+147 7.196830e+147 4.318098e+148 2.590859e+149 1.554515e+150
## [211] 9.327091e+150 5.596255e+151 3.357753e+152 2.014652e+153 1.208791e+154
## [216] 7.252746e+154 4.351648e+155 2.610989e+156 1.566593e+157 9.399559e+157
## [221] 5.733731e+158 3.497576e+159 2.133521e+160 1.301448e+161 7.938833e+161
## [226] 4.842688e+162 2.954040e+163 1.801964e+164 1.099198e+165 6.705109e+165
## [231] 4.090116e+166 2.494971e+167 1.521932e+168 9.283787e+168 5.663110e+169
## [236] 3.454497e+170 2.107243e+171 1.285418e+172 7.841052e+172 4.783042e+173
## [241] 2.917655e+174 1.779770e+175 1.085660e+176 6.622524e+176 4.105965e+177
## [246] 2.545698e+178 1.578333e+179 9.785663e+179 6.067111e+180 3.761609e+181
## [251] 2.332198e+182 1.445963e+183 8.964968e+183 5.558280e+184 3.446134e+185
## [256] 2.136603e+186 1.324694e+187 8.213101e+187 5.092123e+188 3.157116e+189
## [261] 1.957412e+190 1.213595e+191 7.645651e+191 4.816760e+192 3.034559e+193
## [266] 1.911772e+194 1.204416e+195 7.587824e+195 4.780329e+196 3.011607e+197
## [271] 1.897313e+198 1.195307e+199 7.530433e+199 4.744173e+200 2.988829e+201
## [276] 1.882962e+202 1.186266e+203 7.473477e+203 4.708291e+204 2.966223e+205
## [281] 1.868721e+206 1.177294e+207 7.416952e+207 4.672680e+208 2.943788e+209
## [286] 1.854587e+210 1.168390e+211 7.360854e+211 4.637338e+212 2.921523e+213
## [291] 1.840559e+214 1.159552e+215 7.421136e+215 4.749527e+216 3.039697e+217
## [296] 1.945406e+218 1.245060e+219 7.968384e+219 5.099766e+220 3.263850e+221
## [301] 2.088864e+222 1.336873e+223 8.555987e+223 5.475832e+224 3.504532e+225
## [306] 2.242901e+226 1.435456e+227 9.186921e+227 5.879630e+228 3.762963e+229
## [311] 2.408296e+230 1.541310e+231 9.864382e+231 6.313204e+232 4.040451e+233
## [316] 2.585888e+234 1.654969e+235 1.059180e+236 6.778751e+236 4.338401e+237
## [321] 2.819961e+238 1.832974e+239 1.191433e+240 7.744317e+240 5.033806e+241
## [326] 3.271974e+242 2.126783e+243 1.382409e+244 8.985658e+244 5.840678e+245
## [331] 3.796441e+246 2.467686e+247 1.603996e+248 1.042597e+249 6.776884e+249
## [336] 4.404974e+250 2.863233e+251 1.861102e+252 1.209716e+253 7.863155e+253
## [341] 5.111050e+254 3.322183e+255 2.159419e+256 1.403622e+257 9.123545e+257
## [346] 5.930304e+258 3.914001e+259 2.583240e+260 1.704939e+261 1.125260e+262
## [351] 7.426713e+262 4.901630e+263 3.235076e+264 2.135150e+265 1.409199e+266
## [356] 9.300714e+266 6.138472e+267 4.051391e+268 2.673918e+269 1.764786e+270
## [361] 1.164759e+271 7.687408e+271 5.073689e+272 3.348635e+273 2.243585e+274
## [366] 1.503202e+275 1.007145e+276 6.747875e+276 4.521076e+277 3.029121e+278
## [371] 2.029511e+279 1.359772e+280 9.110475e+280 6.104018e+281 4.089692e+282
## [376] 2.740094e+283 1.835863e+284 1.230028e+285 8.241188e+285 5.521596e+286
## [381] 3.699469e+287 2.478644e+288 1.660692e+289 1.112664e+290 7.454846e+290
## [386] 4.994747e+291 3.346480e+292 2.242142e+293 1.502235e+294 1.021520e+295
## [391] 6.946334e+295 4.723507e+296 3.211985e+297 2.184150e+298 1.485222e+299
## [396] 1.009951e+300 6.867666e+300 4.670013e+301 3.175609e+302 2.159414e+303
## [401] 1.468401e+304 9.985130e+304 6.789888e+305 4.617124e+306 3.139644e+307
## [406]           Inf           Inf           Inf           Inf           Inf
## [411]           Inf           Inf           Inf           Inf           Inf
## [416]           Inf           Inf           Inf           Inf           Inf
## [421]           Inf           Inf           Inf           Inf           Inf
## [426]           Inf           Inf           Inf           Inf           Inf
## [431]           Inf           Inf           Inf           Inf           Inf
## [436]           Inf           Inf           Inf           Inf           Inf
## [441]           Inf           Inf           Inf           Inf           Inf
## [446]           Inf           Inf           Inf           Inf           Inf
## [451]           Inf           Inf           Inf           Inf           Inf
## [456]           Inf           Inf           Inf           Inf           Inf
## [461]           Inf           Inf           Inf           Inf           Inf
## [466]           Inf           Inf           Inf           Inf           Inf
## [471]           Inf           Inf           Inf           Inf           Inf
## [476]           Inf           Inf           Inf           Inf           Inf
## [481]           Inf           Inf           Inf           Inf           Inf
## [486]           Inf           Inf           Inf           Inf           Inf
## [491]           Inf           Inf           Inf           Inf           Inf
## [496]           Inf           Inf           Inf           Inf           Inf
## [501]           Inf           Inf           Inf           Inf           Inf
## [506]           Inf           Inf           Inf           Inf           Inf
## [511]           Inf           Inf           Inf           Inf           Inf
## [516]           Inf           Inf           Inf           Inf           Inf
## [521]           Inf           Inf           Inf           Inf           Inf
## [526]           Inf           Inf           Inf           Inf           Inf
## [531]           Inf           Inf           Inf           Inf           Inf
## [536]           Inf           Inf           Inf           Inf           Inf
## [541]           Inf           Inf           Inf           Inf           Inf
## [546]           Inf           Inf           Inf           Inf           Inf
## [551]           Inf           Inf           Inf           Inf           Inf
## [556]           Inf           Inf           Inf           Inf           Inf
## [561]           Inf           Inf           Inf           Inf           Inf
## [566]           Inf           Inf           Inf           Inf           Inf
## [571]           Inf           Inf           Inf           Inf           Inf
## [576]           Inf           Inf           Inf           Inf           Inf
## [581]           Inf           Inf           Inf           Inf
sort(df$Runtime)
##   [1]   4   7   9  10  11  12  13  14  15  15  16  17  17  19  19  21  21  23
##  [19]  23  23  24  25  26  27  28  28  28  30  30  30  31  31  32  32  34  36
##  [37]  37  37  39  39  39  39  40  40  40  40  40  41  41  42  44  45  46  47
##  [55]  47  48  49  49  51  52  53  54  55  56  57  58  58  58  58  60  60  63
##  [73]  64  64  64  64  70  70  70  70  71  72  72  72  73  73  73  74  74  75
##  [91]  76  76  78  78  78  79  79  79  79  79  80  80  80  80  80  80  80  81
## [109]  81  81  81  82  82  82  82  83  83  83  83  83  83  83  83  83  83  83
## [127]  83  84  84  84  85  85  85  85  85  85  85  85  85  85  85  86  86  86
## [145]  86  86  86  86  86  86  86  86  87  87  87  87  87  87  87  87  88  88
## [163]  88  88  89  89  89  89  89  89  89  89  89  89  89  89  89  89  89  89
## [181]  90  90  90  90  90  90  90  90  90  90  90  90  90  90  90  90  91  91
## [199]  91  91  91  91  91  91  92  92  92  92  92  92  92  92  92  92  92  92
## [217]  92  92  92  92  92  93  93  93  93  93  93  93  94  94  94  94  94  94
## [235]  94  94  94  94  94  94  94  94  94  94  94  94  94  95  95  95  95  95
## [253]  95  95  95  95  95  95  95  95  95  95  95  95  95  96  96  96  96  96
## [271]  96  96  96  96  96  96  96  96  97  97  97  97  97  97  97  97  97  97
## [289]  97  97  97  97  97  97  97  97  97  97  97  97  97  97  98  98  98  98
## [307]  98  98  98  98  98  98  98  98  98  98  98  98  98  98  98  99  99  99
## [325]  99  99  99  99  99  99  99  99  99  99 100 100 100 100 100 100 100 100
## [343] 100 100 100 100 100 100 100 100 100 101 101 101 101 101 101 101 101 101
## [361] 101 101 101 101 101 101 102 102 102 102 102 102 102 102 102 102 102 102
## [379] 102 102 103 103 103 103 103 103 103 103 103 103 104 104 104 104 104 104
## [397] 104 104 104 104 104 104 104 105 105 105 105 105 105 105 105 105 105 105
## [415] 105 106 106 106 106 106 106 106 106 106 106 106 106 107 107 107 107 107
## [433] 107 107 107 107 107 108 108 108 108 108 108 108 108 108 108 108 109 109
## [451] 109 110 110 111 111 111 111 111 111 112 112 112 112 112 112 112 112 112
## [469] 112 112 112 113 113 113 113 114 114 114 114 114 114 114 114 114 114 115
## [487] 115 115 116 116 116 116 116 117 117 117 117 117 117 118 118 118 118 118
## [505] 118 118 119 119 119 119 120 120 120 120 120 120 121 121 121 121 121 121
## [523] 121 121 122 122 123 123 123 124 124 124 124 124 124 125 125 125 125 125
## [541] 125 126 126 126 128 129 129 130 130 131 131 131 132 132 132 132 133 134
## [559] 134 135 136 136 136 136 137 138 139 139 140 142 142 144 144 144 147 148
## [577] 149 149 149 151 151 153 155 209
sort(df$IMDB.Score)
##   [1] 2.5 2.6 2.6 3.2 3.4 3.5 3.7 3.7 3.9 4.1 4.1 4.1 4.1 4.2 4.2 4.3 4.3 4.3
##  [19] 4.3 4.4 4.4 4.4 4.4 4.4 4.4 4.5 4.5 4.5 4.5 4.6 4.6 4.6 4.6 4.6 4.6 4.6
##  [37] 4.6 4.7 4.7 4.7 4.7 4.7 4.7 4.8 4.8 4.8 4.8 4.8 4.8 4.8 4.9 4.9 4.9 4.9
##  [55] 5.0 5.0 5.0 5.0 5.0 5.1 5.1 5.1 5.1 5.1 5.1 5.2 5.2 5.2 5.2 5.2 5.2 5.2
##  [73] 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.3 5.3 5.3 5.3 5.3 5.3
##  [91] 5.3 5.3 5.3 5.3 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.5
## [109] 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5
## [127] 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.7 5.7 5.7
## [145] 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.8
## [163] 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8
## [181] 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.9 5.9 5.9 5.9 5.9 5.9 5.9
## [199] 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0
## [217] 6.0 6.0 6.0 6.0 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1
## [235] 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2
## [253] 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3
## [271] 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3
## [289] 6.3 6.3 6.3 6.3 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4
## [307] 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.5 6.5 6.5 6.5
## [325] 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5
## [343] 6.5 6.5 6.5 6.5 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6
## [361] 6.6 6.6 6.6 6.6 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7
## [379] 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.8 6.8 6.8 6.8 6.8 6.8 6.8
## [397] 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.9
## [415] 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9
## [433] 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0
## [451] 7.0 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1
## [469] 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.2 7.2 7.2 7.2 7.2 7.2 7.2
## [487] 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.3 7.3 7.3 7.3 7.3
## [505] 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.4 7.4
## [523] 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5
## [541] 7.5 7.5 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.7 7.7 7.7 7.7 7.7 7.7
## [559] 7.7 7.7 7.8 7.8 7.8 7.9 7.9 7.9 7.9 8.0 8.1 8.1 8.1 8.2 8.2 8.2 8.2 8.2
## [577] 8.3 8.3 8.4 8.4 8.4 8.5 8.6 9.0
df[2,4]
## [1] 81
df[2,3:4]
##          Premiere Runtime
## 2 August 21, 2020      81
df[0,4]
## integer(0)
order(df$Runtime)
##   [1]  41 418 326  67 499 561 497 435 514 553 302 346 428 379 394 112 327 200
##  [19] 411 529 502  16 525 446 321 408 437 264 431 453 440 472 198 364 153 452
##  [37]  31 296 395 403 486 522 335 460 523 530 542 310 474 245 279 447  34 454
##  [55] 507 443 134 458 578 180 203 381 330 108 425   1  11 357 473  80 325 114
##  [73]  21 438 511 512  73 400 445 540 538 254 276 559   9 405 459 324 535 192
##  [91] 391 555  97 172 465   3 352 404 515 534  40  48  51 224 376 457 532   2
## [109]  74 305 466 222 319 480 564  33  86 123 141 202 277 343 345 358 427 520
## [127] 584 229 444 551  35  96 152 228 283 291 402 524 547 570 579  37  57  60
## [145] 118 140 154 161 281 347 368 433  79 239 267 287 311 377 467 526  36  62
## [163] 262 295  26  32  52 127 146 149 185 189 233 356 372 397 488 569 575 583
## [181]   5  15  65 133 159 166 210 212 241 251 274 315 374 516 536 558 132 155
## [199] 339 344 371 468 469 581  85  94  99 122 125 164 168 174 240 246 253 257
## [217] 367 393 415 456 485  42  54  93 190 244 323 333   4  53  70  76 110 111
## [235] 124 138 150 151 179 196 225 293 349 439 464 549 557  30  39  92 128 157
## [253] 171 175 182 204 231 242 261 307 340 370 409 426 470  55 104 176 187 194
## [271] 236 243 300 308 401 419 461 506  13  22  27  45  63  87 106 130 142 184
## [289] 213 272 294 304 313 320 384 417 463 483 492 519 527 574  69  77  95 135
## [307] 147 170 206 256 259 273 286 306 337 355 360 413 481 531 539  23  29  66
## [325]  83 143 238 265 318 362 441 479 490 541  20  43  58 109 115 158 183 232
## [343] 299 328 416 420 434 503 509 548 572  14  49 100 102 107 218 249 275 312
## [361] 341 378 392 399 491 504  19  59  82  90 121 145 186 219 223 263 284 298
## [379] 350 396  47  75 126 129 139 230 292 314 332 422  61 113 144 167 199 209
## [397] 227 260 269 338 365 449 543  25  38  64 178 181 217 342 398 429 505 518
## [415] 568  44  46  68 117 208 211 247 369 380 385 462 571  28 136 163 173 197
## [433] 271 309 412 484 573 120 156 207 282 322 414 442 450 498 533 556 290 436
## [451] 576 455 521 191 201 258 270 382 386   7  12  71  81  88 103 160 297 389
## [469] 432 476 567  56 214 280 301 105 169 237 250 361 406 424 477 513 577  18
## [487] 216 252  84  89 234 317 388  72 268 373 375 448 552 137 177 235 278 351
## [505] 500 528  50 101 303 334  24  98 193 288 336 565  91 165 407 423 451 495
## [523] 501 508 220 410 215 226 331 162 348 387 489 493 545 131 148 316 478 550
## [541] 580 116 354 471 221 266 494 363 563  78 188 430 205 383 421 517 487 289
## [559] 353 560 359 482 554 566 537 475  10 255 496 119 366  17 390 546   6 195
## [577]   8 510 544 248 285 582 329 562
order(df$IMDB.Score)
##   [1]   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18
##  [19]  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36
##  [37]  37  38  39  40  41  42  43  44  45  46  47  48  49  50  51  52  53  54
##  [55]  55  56  57  58  59  60  61  62  63  64  65  66  67  68  69  70  71  72
##  [73]  73  74  75  76  77  78  79  80  81  82  83  84  85  86  87  88  89  90
##  [91]  91  92  93  94  95  96  97  98  99 100 101 102 103 104 105 106 107 108
## [109] 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
## [127] 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
## [145] 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
## [163] 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
## [181] 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
## [199] 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
## [217] 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
## [235] 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
## [253] 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
## [271] 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
## [289] 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
## [307] 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
## [325] 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
## [343] 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
## [361] 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
## [379] 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
## [397] 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
## [415] 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
## [433] 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
## [451] 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
## [469] 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
## [487] 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
## [505] 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
## [523] 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
## [541] 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
## [559] 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
## [577] 577 578 579 580 581 582 583 584
str(df)
## 'data.frame':    584 obs. of  6 variables:
##  $ Title     : chr  "Enter the Anime" "Dark Forces" "The App" "The Open House" ...
##  $ Genre     : chr  "Documentary" "Thriller" "Science fiction/Drama" "Horror thriller" ...
##  $ Premiere  : chr  "August 5, 2019" "August 21, 2020" "December 26, 2019" "January 19, 2018" ...
##  $ Runtime   : int  58 81 79 94 90 147 112 149 73 139 ...
##  $ IMDB.Score: num  2.5 2.6 2.6 3.2 3.4 3.5 3.7 3.7 3.9 4.1 ...
##  $ Language  : chr  "English/Japanese" "Spanish" "Italian" "English" ...
structure(df)
##                                                                                                          Title
## 1                                                                                              Enter the Anime
## 2                                                                                                  Dark Forces
## 3                                                                                                      The App
## 4                                                                                               The Open House
## 5                                                                                                  Kaali Khuhi
## 6                                                                                                        Drive
## 7                                                                                            Leyla Everlasting
## 8                                                                              The Last Days of American Crime
## 9                                                                                                      Paradox
## 10                                                                                          Sardar Ka Grandson
## 11                                                                                        Searching for Sheela
## 12                                                                                                    The Call
## 13                                                                                                     Whipped
## 14                                                                                          All Because of You
## 15                                                                                                       Mercy
## 16                                                                                              After the Raid
## 17                                                                                               Ghost Stories
## 18                                                                                    The Last Thing He Wanted
## 19                                                                                   What Happened to Mr. Cha?
## 20                                                                                                  Death Note
## 21                                                                           Hello Privilege. It's Me, Chelsea
## 22                                                                                            Secret Obsession
## 23                                                                                                  Sextuplets
## 24                                                                                       The Girl on the Train
## 25                                                                                               Thunder Force
## 26                                                                                                Fatal Affair
## 27                                                                                                Just Say Yes
## 28                                                                                            Seriously Single
## 29                                                                       The Misadventures of Hedi and Cokeman
## 30                                                                                            5 Star Christmas
## 31                                                                                                 After Maria
## 32                                                               I Am the Pretty Thing That Lives in the House
## 33                                                                                                 Paris Is Us
## 34                                                            Porta dos Fundos: The First Temptation of Christ
## 35                                                                                                 Rattlesnake
## 36                                                                                                 The Players
## 37                                                                                                  We Are One
## 38                                                                                               Finding Agnes
## 39                                                                                                          IO
## 40                                                                                                  Sentinelle
## 41                                                                                                 Sol Levante
## 42                                                                                                 The Binding
## 43                                                                                            We Can Be Heroes
## 44                                                                                         Christmas Crossfire
## 45                                                                                                  Coin Heist
## 46                                                                                          Mrs. Serial Killer
## 47                                                                          Nobody Sleeps in the Woods Tonight
## 48                                                                                                 Take the 10
## 49                                                                                              The Main Event
## 50                                                                                            The Ridiculous 6
## 51                                                                                             Earth and Blood
## 52                                                                                                    Fearless
## 53                                                                                                Holiday Rush
## 54                                                                                         The Day of the Lord
## 55                                                                                               Airplane Mode
## 56                                                                                                 How It Ends
## 57                                                                                  Love Like the Falling Rain
## 58                                                                                                     Rebirth
## 59                                                                                                Squared Love
## 60                                                                                                     Cadaver
## 61                                                                                                    Clinical
## 62                                                                                             Coffee & Kareem
## 63                                                                                                        Dude
## 64                                                                                                  Geez & Ann
## 65                                                                                      The Larva Island Movie
## 66                                                                                                #REALITYHIGH
## 67                                                           American Factory: A Conversation with the Obamas 
## 68                                                                                                  Desperados
## 69                                                                      Dolly Parton's Christmas on the Square
## 70                                                                                          Father of the Year
## 71                                                                                                   Firebrand
## 72                                                                                                   Ghost Lab
## 73                                                                                            Girlfriend's Day
## 74                                                                           Handsome: A Netflix Mystery Movie
## 75                                                                                             Hubie Halloween
## 76                                                                                                       Ibiza
## 77                                                                                            Rim of the World
## 78                                                                                                Sandy Wexler
## 79                                                                                           See You Yesterday
## 80                                                                         Still Laugh-In: The Stars Celebrate
## 81                                                                                         Strip Down, Rise Up
## 82                                                                                                   Tall Girl
## 83                                                                                                   The Beast
## 84                                                                                                 The Week Of
## 85                                                                       A Christmas Prince: The Royal Wedding
## 86                                                                                              Back to School
## 87                                                                                              Dangerous Lies
## 88                                                                              Gunjan Saxena: The Kargil Girl
## 89                                                                                                   Intuition
## 90                                                                    The Most Assassinated Woman in the World
## 91                                                                                         Things Heard & Seen
## 92                                                                                            To Each, Her Own
## 93                                                                    Who Would You Take to a Deserted Island?
## 94                                                                                                        XOXO
## 95                                                                     A Babysitter's Guide to Monster Hunting
## 96                                                                          A Christmas Prince: The Royal Baby
## 97                                                                                          Despite Everything
## 98                                                                       Dolly Kitty and Those Twinkling Stars
## 99                                                                                    Freaks: You're One of Us
## 100                                                                                            Game Over, Man!
## 101                                                                                                     Guilty
## 102                                                                                          In the Tall Grass
## 103                                                                                              Madame Claude
## 104                                                                                                      Naked
## 105                                                                                           Outside the Wire
## 106                                                                        The Princess Switch: Switched Again
## 107                                                                                     Under the Riccione Sun
## 108                                                                                    A Very Murray Christmas
## 109                                                                                               Been So Long
## 110                                                                                                  Dead Kids
## 111                                                                                              Get the Grift
## 112                                                                                       Ghosts of Sugar Land
## 113                                                                                               House Arrest
## 114                                                                        Kevin Hart's Guide to Black History
## 115                                                                                        Love Wedding Repeat
## 116                                                                                                       Mute
## 117                                                                                                    Òlòt?ré
## 118                                                                                                    Red Dot
## 119                                                                                                Ride or Die
## 120                                                                                               Step Sisters
## 121                                                                                    The Cloverfield Paradox
## 122                                                                                The Knight Before Christmas
## 123                                                                      The Legacy of a Whitetail Deer Hunter
## 124                                                                                                The Package
## 125                                                                                              Unicorn Store
## 126                                                                                               Wine Country
## 127                                                                                                Bomb Scared
## 128                                                                                              Brahman Naman
## 129                                                                                                 Double Dad
## 130                                                                                           Falling Inn Love
## 131                                                                                              Hold the Dark
## 132                                                                                           Love, Guaranteed
## 133                                                                                        One-Way to Tomorrow
## 134                                                                            Sarah Cooper: Everything's Fine
## 135                                                                                             The Last Laugh
## 136                                                                                          The Last Paradiso
## 137                                                                                           The Midnight Sky
## 138                                                                                              The Paramedic
## 139                                                                                              The Sleepover
## 140                                                                                     Vampires vs. the Bronx
## 141                                                                                       Why Did You Kill Me?
## 142                                                                                                A Week Away
## 143                                                                                           Caught by a Wave
## 144                                                                                      Christmas Inheritance
## 145                                                                                                 Dad Wanted
## 146                                                                                        El Camino Christmas
## 147                                                                                                        Eli
## 148                                                                                           Ginny Weds Sunny
## 149                                                                                                   Good Sam
## 150                                                                                                  Lionheart
## 151                                                                                                Little Evil
## 152                                                                                                   One Take
## 153                                                                                           Out of Many, One
## 154                                                                                                Point Blank
## 155                                                                                                 Prime Time
## 156                                                                                                The Do-Over
## 157                                                                                       The Holiday Calendar
## 158                                                                                    The Woman in the Window
## 159                                                                                            The Wrong Missy
## 160                                                                                             Velvet Buzzsaw
## 161                                                                                                    Yes Day
## 162                                                                                                  15 August
## 163                                                                                     A California Christmas
## 164                                                                                         A Christmas Prince
## 165                                                                                        All Day and a Night
## 166                                                                                               American Son
## 167                                                                                                      Barry
## 168                                                                                                  Candy Jar
## 169                                                                                    Choked: Paisa Bolta Hai
## 170                                                                                               Class of '83
## 171                                                                                                 Extinction
## 172                                                                                          Happy Anniversary
## 173                                                                                             I Am All Girls
## 174                                                                                                Let It Snow
## 175                                                                                                    Mascots
## 176                                                                                   Operation Christmas Drop
## 177                                                                                               Rajma Chawal
## 178                                                                                               Rich in Love
## 179                                                                                                Rising High
## 180                                                                                                Rodney King
## 181                                                                                  Sierra Burgess Is a Loser
## 182                                                                                               Small Crimes
## 183                                                                                     Special Correspondents
## 184                                                                                                        TAU
## 185                                                                                            The After Party
## 186                                                                               The Babysitter: Killer Queen
## 187                                                                                           The Claus Family
## 188                                                                                        The Kissing Booth 2
## 189                                                                                           The Perfect Date
## 190                                                                                             What We Wanted
## 191                                                                                            You've Got This
## 192                                                                                                 6 Balloons
## 193                                                                                          A Fall from Grace
## 194                                                                                                    Amateur
## 195                                                                                           Army of the Dead
## 196                                                                                                        Cam
## 197                                                                                            Earthquake Bird
## 198                                                             Frankenstein's Monster's Monster, Frankenstein
## 199                                                                                                 Horse Girl
## 200                                                         Notes from Dunblane: Lesson from a School Shooting
## 201                                                                                                      Maska
## 202                                                                                                The Decline
## 203                                                                               The Minimalists: Less Is Now
## 204                                                                                             The Polka King
## 205                                                                                                   The Prom
## 206                                                                  True Memoirs of an International Assassin
## 207                                                                                                     Ultras
## 208                                                                                                Come Sunday
## 209                                                                                       Forgive Us Our Debts
## 210                                                                                                       iBoy
## 211                                                                                                 Lovefucked
## 212                                                                                                    Juanita
## 213                                                                                             Murder Mystery
## 214                                                                                              Project Power
## 215                                                                                                    Rebecca
## 216                                                                         The Christmas Chronicles: Part Two
## 217                                                                                          The Kissing Booth
## 218                                                                                        The Princess Switch
## 219                                                                     To All the Boys: P.S. I Still Love You
## 220                                                                                                War Machine
## 221                                                                                              6 Underground
## 222                                                                               Between Two Ferns: The Movie
## 223                                                                                              Burning Sands
## 224                                                                                           Casting JonBenet
## 225                                                                                 Deidra & Laney Rob a Train
## 226                                                                                             Finding 'Ohana
## 227                                                                                                   Holidate
## 228                                                                                        Holiday in the Wild
## 229                                                                                           Hot Girls Wanted
## 230                                                                                                Like Father
## 231                                                                                                 Lost Girls
## 232                                                                                                  Otherhood
## 233                                                                                      Pee-wee's Big Holiday
## 234                                                                                                 Rogue City
## 235                                                                                                     Sergio
## 236                                                                                                Stuck Apart
## 237                                                                                       Tersanjung the Movie
## 238                                                                                                 The Killer
## 239                                                                                              The Lovebirds
## 240                                                                            The Most Hated Woman in America
## 241                                                                                             The Perfection
## 242                                                                              Tribhanga – Tedhi Medhi Crazy
## 243                                                                                            Unknown Origins
## 244                                                                                                    Work It
## 245                                                                                                 Alien Xmas
## 246                                                                                Baggio: The Divine Ponytail
## 247                                                                                                 Below Zero
## 248                                                                                                   Citation
## 249                                                                                     Crazy Awesome Teachers
## 250                                                                              Have You Ever Seen Fireflies?
## 251                                                                                           High Flying Bird
## 252                                                                                  In the Shadow of the Moon
## 253                                                                                                Lost Bullet
## 254                                                                         Octonauts & the Caves of Sac Actun
## 255                                                                                      Offering to the Storm
## 256                                                                                            Roxanne Roxanne
## 257                                                                                              Someone Great
## 258                                                                                       Spenser Confidential
## 259                                                                                  The Land of Steady Habits
## 260                                                                                          The Rachel Divide
## 261                                                                                                    Voyuer 
## 262                                                                                                 Win It All
## 263                                                                                                       1922
## 264                                                                                     A Tale of Two Kitchens
## 265                                                                                           Alex Strangelove
## 266                                                                                                    Apostle
## 267                                                                                                      Benji
## 268                                                                                                     Bright
## 269                                                                                                      Cargo
## 270                                                                                            Concrete Cowboy
## 271                                                                                              Feel the Beat
## 272                                                                                               Get the Goat
## 273                                                                                       I Am Not an Easy Man
## 274                                                                                                June & Kopi
## 275                                                                                              Music Teacher
## 276                                                                                       Nail Bomber: Manhunt
## 277                                                                                           Notes for My Son
## 278                                                                                                      Polar
## 279                                                                        Porta dos Fundos: The Last Hangover
## 280                                                                                                Sand Castle
## 281                                                                                               Shimmer Lake
## 282                                                                                                   Spectral
## 283                                                                                             The Babysitter
## 284                                                                                              The Discovery
## 285                                                                                         The Forest of Love
## 286                                                                                             The Laundromat
## 287                                                                               The Legend of Cocaine Island
## 288                                                                                               The Outsider
## 289                                                                                               Time to Hunt
## 290                                                                        To All the Boys: Always and Forever
## 291                                                                           Travis Scott: Look Mom I Can Fly
## 292                                                                                                   Uncorked
## 293                                                                                      Anelka: Misunderstood
## 294                                                                       Ariana Grande: Excuse Me, I Love You
## 295                                                                                                        ARQ
## 296                                                                                                    Birders
## 297                                                                                       Como Caído del Cielo
## 298                                                                                                First Match
## 299                                                                                                  Fractured
## 300                                                                                          Irreplaceable You
## 301                                                                                                 Isi & Ossi
## 302                                                                          John Was Trying to Contact Aliens
## 303                                                                                               Layla Majnun
## 304                                                                   Murder to Mercy: The Cyntoia Brown Story
## 305                                                                                                 My Own Man
## 306                                                                                         Nappily Ever After
## 307                                                                                              Over the Moon
## 308                                                                                                Street Flow
## 309                                                                                              Strong Island
## 310                                                                    Sturgill Simpson Presents: Sound & Fury
## 311                                                                                            Take Your Pills
## 312                                                                                        The Heartbreak Club
## 313                                                                                        The Mars Generation
## 314                                                                                               The Occupant
## 315                                                                                            The Willoughbys
## 316                                                                                            Triple Frontier
## 317                                                                                             Two Catalonias
## 318                                                                                         Walk. Ride. Rodeo.
## 319                                                                                                   Wheelman
## 320                                                                                          When We First Met
## 321                                                                                             A 3 Minute Hug
## 322                                                                                      All the Bright Places
## 323                                                                                           All Together Now
## 324                                                                                  Altered Carbon: Resleeved
## 325                                                                  Antoine Griezmann: The Making of a Legend
## 326                                                                                                    Canvas 
## 327                                                                    Chadwick Boseman: Portrait of an Artist
## 328                                                                                                 Chopsticks
## 329                                                                                                Da 5 Bloods
## 330                                                                          Dolly Parton: A MusiCares Tribute
## 331                                                            Eurovision Song Contest: The Story of Fire Saga
## 332                                                                                              Gerald's Game
## 333                                                                                                  His House
## 334                                                                         Jingle Jangle: A Christmas Journey
## 335                                                                                          Life Overtakes Me
## 336                                                                                               Lust Stories
## 337                                                                                                    Monster
## 338                                                                               Mowgli: Legend of the Jungle
## 339                                                                                      Nobody Knows I'm Here
## 340                                                                     Nobody Speak: Trials of the Free Press
## 341                                                                                                     Oxygen
## 342                                                                                                  Set It Up
## 343                                                                               The Incredible Jessica James
## 344                                                                                                  Tigertail
## 345                                                                                                     Tramps
## 346                                                                                          What Did Jack Do?
## 347                                                                                                   Bad Trip
## 348                                                                                                   Bird Box
## 349                                                                                                    Bulbbul
## 350                                                                                            Crazy About Her
## 351                                                                                            Elisa & Marcela
## 352                                                                                   I'll Sleep When I'm Dead
## 353                                                                              I'm Thinking of Ending Things
## 354                                                                                         It Takes a Lunatic
## 355                                                                                                  Milestone
## 356                                                                                              Recovery Boys
## 357                                                                     ReMastered: Who Killed Jam Master Jay?
## 358                                                                                    Shawn Mendes: In Wonder
## 359                                                                                             Space Sweepers
## 360                                                                                          The American Meme
## 361                                                                                                  The Angel
## 362                                                                                       The Crimes That Bind
## 363                                                                                  The Red Sea Diving Resort
## 364                                                                                What Would Sophia Loren Do?
## 365                                                                                             A Whisker Away
## 366                                                                                            Ajeeb Daastaans
## 367                                                                                     Arlo the Alligator Boy
## 368                                                                               Bikram: Yogi, Guru, Predator
## 369                                                                                                     Blame!
## 370                                                                                               Blue Miracle
## 371                                                                                              CounterPunch 
## 372                                                                    Crack: Cocaine, Corruption & Conspiracy
## 373                                                                                                 Extraction
## 374                                                                                               Giving Voice
## 375                                                                                            Hillbilly Elegy
## 376                                                                         Hope Frozen: A Quest to Live Twice
## 377                                                                                            Imperial Dreams
## 378                                                                                     Just Another Christmas
## 379                                                                                           Little Miss Sumo
## 380                                                                                            Malcolm & Marie
## 381                                                        Michael Bolton's Big, Sexy, Valentine's Day Special
## 382                                                                                                      Moxie
## 383                                                                                          Night in Paradise
## 384                                                                                                Paper Lives
## 385                                                                                   Parchis: The Documentary
## 386                                                                                                   Tallulah
## 387                                                                                              The Old Guard
## 388                                                                           Tony Robbins: I Am Not Your Guru
## 389                                                                                                   Upstarts
## 390                                                                                                    22 July
## 391                                                                                                     7 años
## 392                                                                                A Futile and Stupid Gesture
## 393                                                              A Life of Speed: The Juan Manuel Fangio Story
## 394                                                                                    A Love Song for Latasha
## 395                                                                                           All in My Family
## 396                                                                                         Always Be My Maybe
## 397                                                                                                   Becoming
## 398                                                                                       Long Live Brij Mohan
## 399                                                                                                    Calibre
## 400                                                                                              Death to 2020
## 401                                                                                        GIMS: On the Record
## 402                                                               Have a Good Trip: Adventures in Psychedelics
## 403                                                                                                 Heroin(e) 
## 404                                                                                                 Mercury 13
## 405                                                                                          Saving Capitalism
## 406                                                                                                Serious Men
## 407                                                                                       The Boys in the Band
## 408                                                                   The Boys in the Band: Something Personal
## 409                                                                                             The Life Ahead
## 410                                                                                 The Other Side of the Wind
## 411                                                                                                 The Trader
## 412                                                                                                To the Bone
## 413                                                                                Tony Parker: The Final Shot
## 414                                                                                                   AK vs AK
## 415                                                                                                Amanda Knox
## 416                                                                               Bigflo & Oil: Hip Hop Frenzy
## 417                                                                              Biggie: I Got a Story to Tell
## 418                                                                                           Cops and Robbers
## 419                                                                 I Don't Feel at Home in This World Anymore
## 420                                                                                                  Laerte-se
## 421                                                                                                       Mank
## 422                                                                                         Our Souls at Night
## 423                                                                                                Outlaw King
## 424                                                                                                   Pagglait
## 425                                                                          ReMastered: Who Shot the Sheriff?
## 426                                                                                              Seeing Allred
## 427                                                                                         Spelling the Dream
## 428                                                                                     The Claudia Kishi Club
## 429                                                                                             The Half of It
## 430                                                                                             The Highwaymen
## 431                                      The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 432                                                                  The Meyerowitz Stories (New and Selected)
## 433                                                                        Feminists: What Were They Thinking?
## 434                                                                                        Gaga: Five Foot Two
## 435                                I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 436                                                                                              Kingdom of Us
## 437                                                                                 Lorena, Light-Footed Woman
## 438                                                                      Los Tigres del Norte at Folsom Prison
## 439                                                                                   Ma Rainey's Black Bottom
## 440                                                       Ma Rainey's Black Bottom: A Legacy Brought to Screen
## 441                                                    Operation Varsity Blues: The College Admissions Scandal
## 442                                                                                                       Pele
## 443                                                                        ReMastered: Devil at the Crossroads
## 444                                                                               ReMastered: The Lion's Share
## 445                                                                    ReMastered: The Miami Showband Massacre
## 446                                                                                                  Resurface
## 447                                                                          Rocko's Modern Life: Static Cling
## 448                                                                                                Rose Island
## 449                                                                                   The Christmas Chronicles
## 450                                                                                                   The Dirt
## 451                                                                                     The Night Comes for Us
## 452                                                     13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 453                                                                                         Angela's Christmas
## 454                                                                                    Angela's Christmas Wish
## 455                                                                                                      Beats
## 456                                                                                            Circus of Books
## 457                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 458                                                                                    Derren Brown: Sacrifice
## 459                                                                                    El Pepe: A Supreme Life
## 460                                                                                                   End Game
## 461                                                                                                     Evelyn
## 462                                                                                                      Ferry
## 463                                                                                           Grass Is Greener
## 464                                                                        Guillermo Vilas: Settling the Score
## 465                                                                            Joshua: Teenager vs. Superpower
## 466                                                                        Keith Richards: Under the Influence
## 467                                                                                       Knock Down the House
## 468                                                                      Loudon Wainwright III: Surviving Twin
## 469                                                                                  My Beautiful Broken Brain
## 470                                                                                                  One of Us
## 471                                                                                          Pieces of a Woman
## 472                                                                                       Ram Dass, Going Home
## 473                                                                 ReMastered: Tricky Dick & the Man in Black
## 474                                                                                          Rooting for Roona
## 475                                                                                     The Devil All the Time
## 476                                                                                                    The Dig
## 477                                                                                             The Great Hack
## 478                                                                                            The White Tiger
## 479                                                                          To All the Boys I've Loved Before
## 480                                                                      American Murder: The Family Next Door
## 481                                                                                             Audrie & Daisy
## 482                                                                                First They Killed My Father
## 483                                                               Fyre: The Greatest Party That Never Happened
## 484                                                                                           Into the Inferno
## 485                                                                                               LA Originals
## 486                                                                                               Ladies First
## 487                                                                                       Love per Square Foot
## 488                                                                                                  Paddleton
## 489                                                                                               Private Life
## 490                                                                                                  Seventeen
## 491                                                                                                  Sometimes
## 492                                                                                                       Soni
## 493                                                                                    The 40-Year-Old Version
## 494                                                                                               The Disciple
## 495                                                                                      The Edge of Democracy
## 496                                                                                                   The King
## 497                                                                The Road to El Camino: A Breaking Bad Movie
## 498                                                                                    The Siege of Jadotville
## 499                                                                                                      Zion 
## 500                                                                                        Dolemite Is My Name
## 501                                                                            El Camino: A Breaking Bad Movie
## 502                                                                                                   Extremis
## 503                                                                                         Father Soldier Son
## 504                                                                                         Get Me Roger Stone
## 505                                                                                         I'm No Longer Here
## 506                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 507                                                                         Octonauts & the Great Barrier Reef
## 508                                                                                                       Okja
## 509                                                                                                 On My Skin
## 510                                                                                             Raat Akeli Hai
## 511                                                                        ReMastered: Massacre at the Stadium
## 512                                                                  ReMastered: The Two Killings of Sam Cooke
## 513                                                                                Secrets of the Saqqara Tomb
## 514                                                                                    Sitara: Let Girls Dream
## 515                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 516                                                                                            Team Foxcatcher
## 517                                                                               The Ballad of Buster Scruggs
## 518                                                                    The Death and Life of Marsha P. Johnson
## 519                                                                                 The Fundamentals of Caring
## 520                                                           The Other One: The Long Strange Trip of Bob Weir
## 521                                                                                           American Factory
## 522                                                                                           Fire in Paradise
## 523                                                                                                  Long Shot
## 524                                                                                             Miss Americana
## 525                                                                                   Period. End of Sentence.
## 526                                                                              Shawn Mendes: Live in Concert
## 527                                                                                                   Shirkers
## 528                                                                                        The Black Godfather
## 529                                                                              The Irishman: In Conversation
## 530                                                                                           The Speed Cubers
## 531                                                                              They'll Love Me When I'm Dead
## 532                                                                                                        Tig
## 533                                                                Barbra: The Music, The Mem'ries, The Magic!
## 534                                                                                Blackpink: Light Up the Sky
## 535                                                                                                City of Joy
## 536                                                                                       Dick Johnson Is Dead
## 537                                                                             Homecoming: A Film by Beyonce 
## 538                                                                             Invader Zim: Enter the Florpus
## 539                                                                      Joan Didion: The Center Will Not Hold
## 540                                                                        John Mulaney & the Sack Lunch Bunch
## 541                                                                                              Reversing Roe
## 542                                                                                          The White Helmets
## 543                                                                                                  Athlete A
## 544                                                                                                       Ludo
## 545                                                                                                     Quincy
## 546                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 547                                                                                           Tell Me Who I Am
## 548                                                                                          The Bleeding Edge
## 549                                                                                         The Social Dilemma
## 550                                                                                              The Two Popes
## 551                                                                                What Happened, Miss Simone?
## 552                                                                                                 Yeh Ballet
## 553                                                                                                      Anima
## 554                                                                                        Beasts of No Nation
## 555                                                                           Brene Brown: The Call to Courage
## 556                                                                         Crip Camp: A Disability Revolution
## 557 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 558                                                                     Justin Timberlake + The Tennessee Kids
## 559                                                                                               Road to Roma
## 560                                                                                                       Roma
## 561                                                                             If Anything Happens I Love You
## 562                                                                                               The Irishman
## 563                                                                                 The Trial of the Chicago 7
## 564                                                                                              A Secret Love
## 565                                                                                                     Icarus
## 566                                                                                             Marriage Story
## 567                                                                                             The Ivory Game
## 568                                                               Struggle: The Life and Lost Art of Szukaiski
## 569                                                                                             Chasing Coral 
## 570                                                                                         My Octopus Teacher
## 571                                                                                             Rising Phoenix
## 572                                                                                                       13th
## 573                                                                          Disclosure: Trans Lives on Screen
## 574                                                                                                      Klaus
## 575                                                                                                 Seaspiracy
## 576                                                                      The Three Deaths of Marisela Escobedo
## 577                                                                                    Cuba and the Cameraman 
## 578                                                                                     Dancing with the Birds
## 579                                                                 Ben Platt: Live from Radio City Music Hall
## 580                                                                      Taylor Swift: Reputation Stadium Tour
## 581                                                                Winter on Fire: Ukraine's Fight for Freedom
## 582                                                                                    Springsteen on Broadway
## 583                                                                  Emicida: AmarElo - It's All For Yesterday
## 584                                                                   David Attenborough: A Life on Our Planet
##                                    Genre           Premiere Runtime IMDB.Score
## 1                            Documentary     August 5, 2019      58        2.5
## 2                               Thriller    August 21, 2020      81        2.6
## 3                  Science fiction/Drama  December 26, 2019      79        2.6
## 4                        Horror thriller   January 19, 2018      94        3.2
## 5                                Mystery   October 30, 2020      90        3.4
## 6                                 Action   November 1, 2019     147        3.5
## 7                                 Comedy   December 4, 2020     112        3.7
## 8                    Heist film/Thriller       June 5, 2020     149        3.7
## 9                Musical/Western/Fantasy     March 23, 2018      73        3.9
## 10                                Comedy       May 18, 2021     139        4.1
## 11                           Documentary     April 22, 2021      58        4.1
## 12                                 Drama  November 27, 2020     112        4.1
## 13                       Romantic comedy September 18, 2020      97        4.1
## 14                         Action comedy    October 1, 2020     101        4.2
## 15                              Thriller  November 22, 2016      90        4.2
## 16                           Documentary  December 19, 2019      25        4.3
## 17                      Horror anthology    January 1, 2020     144        4.3
## 18                    Political thriller  February 21, 2020     115        4.3
## 19                                Comedy    January 1, 2021     102        4.3
## 20                       Horror thriller    August 25, 2017     100        4.4
## 21                           Documentary September 13, 2019      64        4.4
## 22                              Thriller      July 18, 2019      97        4.4
## 23                                Comedy    August 16, 2019      99        4.4
## 24                              Thriller  February 26, 2021     120        4.4
## 25                      Superhero-Comedy      April 9, 2021     105        4.4
## 26                              Thriller      July 16, 2020      89        4.5
## 27                       Romantic comedy      April 2, 2021      97        4.5
## 28                                Comedy      July 31, 2020     107        4.5
## 29                                Comedy  February 10, 2021      99        4.5
## 30                                Comedy   December 7, 2018      95        4.6
## 31                           Documentary       May 24, 2019      37        4.6
## 32                                Horror   October 28, 2016      89        4.6
## 33                         Romance drama  February 22, 2019      83        4.6
## 34                                Comedy   December 3, 2019      46        4.6
## 35                                Horror   October 25, 2019      85        4.6
## 36                                Comedy      July 15, 2020      88        4.6
## 37                           Documentary      July 14, 2020      86        4.6
## 38                                 Drama  November 30, 2020     105        4.7
## 39                 Science fiction/Drama   January 18, 2019      95        4.7
## 40                                Action      March 5, 2021      80        4.7
## 41                         Anime / Short      April 2, 2020       4        4.7
## 42                                 Drama    October 2, 2020      93        4.7
## 43                             Superhero  December 25, 2020     100        4.7
## 44                              Thriller   December 4, 2020     106        4.8
## 45                                 Heist    January 6, 2017      97        4.8
## 46                              Thriller        May 1, 2020     106        4.8
## 47                                Horror   October 28, 2020     103        4.8
## 48                                Comedy   January 20, 2017      80        4.8
## 49                                Comedy     April 10, 2020     101        4.8
## 50                               Western  December 11, 2015     119        4.8
## 51                                Action     April 17, 2020      80        4.9
## 52                   Animation/Superhero    August 14, 2020      89        4.9
## 53                           Family film  November 28, 2019      94        4.9
## 54                                 Drama   October 30, 2020      93        4.9
## 55                                Comedy   January 23, 2020      96        5.0
## 56                       Action-thriller      July 13, 2018     113        5.0
## 57                                 Drama   October 15, 2020      86        5.0
## 58                              Thriller      July 15, 2016     100        5.0
## 59                       Romantic comedy  February 11, 2021     102        5.0
## 60                                Horror   October 22, 2020      86        5.1
## 61                              Thriller   January 13, 2017     104        5.1
## 62                         Action comedy      April 3, 2020      88        5.1
## 63                     Teen comedy-drama     April 20, 2018      97        5.1
## 64                        Romantic drama  February 25, 2021     105        5.1
## 65                             Animation      July 23, 2020      90        5.1
## 66                                Comedy  September 8, 2017      99        5.2
## 67                 Aftershow / Interview    August 21, 2019      10        5.2
## 68                       Romantic comedy       July 3, 2020     106        5.2
## 69                     Christmas musical  November 22, 2020      98        5.2
## 70                                Comedy      July 20, 2018      94        5.2
## 71                                 Drama  February 22, 2019     112        5.2
## 72                                Horror       May 26, 2021     117        5.2
## 73                                Comedy  February 14, 2017      70        5.2
## 74                                Comedy        May 5, 2017      81        5.2
## 75                                Comedy    October 7, 2020     103        5.2
## 76                                Comedy       May 25, 2018      94        5.2
## 77             Science fiction adventure       May 24, 2019      98        5.2
## 78                                Comedy     April 14, 2017     131        5.2
## 79                       Science fiction       May 17, 2019      87        5.2
## 80                          Variety show       May 14, 2019      60        5.2
## 81                           Documentary   February 5, 2021     112        5.2
## 82                          Comedy-drama September 13, 2019     102        5.2
## 83                                 Drama  November 27, 2020      99        5.2
## 84                                Comedy     April 27, 2018     116        5.2
## 85                       Romantic comedy  November 30, 2018      92        5.3
## 86                                Comedy    August 30, 2019      83        5.3
## 87                              Thriller     April 30, 2020      97        5.3
## 88                                 Drama    August 12, 2020     112        5.3
## 89                              Thriller       May 28, 2020     116        5.3
## 90                              Thriller  September 7, 2018     102        5.3
## 91                                Horror     April 29, 2021     121        5.3
## 92                       Romantic comedy      June 24, 2018      95        5.3
## 93                                 Drama     April 12, 2019      93        5.3
## 94                                 Drama    August 26, 2016      92        5.3
## 95                 Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 96                       Romantic comedy   December 5, 2019      85        5.4
## 97                                Comedy        May 3, 2019      78        5.4
## 98                                 Drama September 18, 2020     120        5.4
## 99                    Supernatural drama  September 2, 2020      92        5.4
## 100                        Action/Comedy     March 23, 2018     101        5.4
## 101                             Thriller      March 6, 2020     119        5.4
## 102                               Horror    October 4, 2019     101        5.4
## 103                                Drama      April 2, 2021     112        5.4
## 104                               Comedy    August 11, 2017      96        5.4
## 105               Action/Science fiction   January 15, 2021     114        5.4
## 106                      Romantic comedy  November 19, 2020      97        5.4
## 107               Romantic teenage drama       July 1, 2020     101        5.4
## 108                     Comedy / Musical   December 4, 2015      56        5.5
## 109                              Musical   October 26, 2018     100        5.5
## 110                             Thriller   December 1, 2019      94        5.5
## 111                               Comedy     April 28, 2021      94        5.5
## 112                          Documentary   October 16. 2019      21        5.5
## 113                               Comedy  November 15, 2019     104        5.5
## 114                         Variety show   February 8, 2019      63        5.5
## 115                      Romantic comedy     April 10, 2020     100        5.5
## 116              Science fiction/Mystery  February 23, 2018     126        5.5
## 117                          Crime drama    October 2, 2020     106        5.5
## 118                             Thriller  February 11, 2021      86        5.5
## 119         Psychological thriller drama     April 15, 2021     142        5.5
## 120                               Comedy   January 19, 2018     108        5.5
## 121                      Science fiction   February 4, 2018     102        5.5
## 122                      Romantic comedy  November 21, 2019      92        5.5
## 123                     Adventure/Comedy       July 6, 2018      83        5.5
## 124                         Black comedy    August 10, 2018      94        5.5
## 125                               Comedy      April 5, 2019      92        5.5
## 126                               Comedy       May 10, 2019     103        5.5
## 127                         Black comedy   October 12, 2017      89        5.6
## 128                               Comedy       July 7, 2016      95        5.6
## 129                         Comedy-drama   January 15, 2021     103        5.6
## 130                      Romantic comedy    August 29, 2019      97        5.6
## 131                             Thriller September 28, 2018     125        5.6
## 132                      Romantic comedy  September 3, 2020      91        5.6
## 133                              Romance      June 19, 2020      90        5.6
## 134                         Variety show   October 27, 2020      49        5.6
## 135                         Comedy-drama   January 11, 2019      98        5.6
## 136                       Romantic drama   February 5, 2021     107        5.6
## 137                      Science fiction  December 23, 2020     118        5.6
## 138                             Thriller September 16, 2020      94        5.6
## 139                               Comedy    August 21, 2020     103        5.6
## 140                        Horror comedy    October 2, 2020      86        5.6
## 141                          Documentary     April 14, 2021      83        5.6
## 142                    Christian musical     March 26, 2021      97        5.7
## 143                  Romantic teen drama     March 25, 2021      99        5.7
## 144                       Romantic drama  December 15, 2017     104        5.7
## 145                               Family September 11, 2020     102        5.7
## 146                          Dark comedy   December 8, 2017      89        5.7
## 147                               Horror   October 18, 2019      98        5.7
## 148                      Romantic comedy    October 9, 2020     125        5.7
## 149                                Drama       May 16, 2019      89        5.7
## 150                               Comedy    January 4, 2019      94        5.7
## 151                        Comedy horror  September 1, 2017      94        5.7
## 152                          Documentary      June 18, 2020      85        5.7
## 153                          Documentary  December 12, 2018      34        5.7
## 154                               Action      July 12, 2019      86        5.7
## 155                             Thriller     April 14, 2021      91        5.7
## 156                        Action comedy       May 27, 2016     108        5.7
## 157                      Romantic comedy   November 2, 2018      95        5.7
## 158               Psychological thriller       May 14, 2021     100        5.7
## 159                               Comedy       May 13, 2020      90        5.7
## 160                             Thriller   February 1, 2019     112        5.7
## 161                               Comedy     March 12, 2021      86        5.7
## 162                         Comedy-drama     March 29, 2019     124        5.8
## 163                      Romantic comedy  December 14, 2020     107        5.8
## 164                      Romantic comedy  November 17, 2017      92        5.8
## 165                                Drama        May 1, 2020     121        5.8
## 166                                Drama   November 1, 2019      90        5.8
## 167                               Biopic  December 16, 2016     104        5.8
## 168                               Comedy     April 27, 2018      92        5.8
## 169                                Drama       June 5, 2020     114        5.8
## 170                                Drama    August 21, 2020      98        5.8
## 171             Science fiction/Thriller      July 27, 2018      95        5.8
## 172                      Romantic comedy     March 30, 2018      78        5.8
## 173                             Thriller       May 14, 2021     107        5.8
## 174                      Romantic comedy   November 8, 2019      92        5.8
## 175                         Mockumentary   October 13, 2016      95        5.8
## 176                      Romantic comedy   November 5, 2020      96        5.8
## 177                         Comedy-drama  November 30, 2018     118        5.8
## 178                      Romantic comedy     April 30, 2020     105        5.8
## 179                               Satire     April 17, 2020      94        5.8
## 180                         One-man show     April 28, 2017      52        5.8
## 181                Romantic comedy-drama  September 7, 2018     105        5.8
## 182                          Dark comedy     April 28, 2017      95        5.8
## 183                               Satire     April 29, 2016     100        5.8
## 184             Science fiction/Thriller      June 29, 2018      97        5.8
## 185                               Comedy    August 24, 2018      89        5.8
## 186                        Comedy/Horror September 10, 2020     102        5.8
## 187                              Fantasy   December 7, 2020      96        5.8
## 188                      Romantic comedy      July 24, 2020     131        5.8
## 189                      Romantic comedy     April 12, 2019      89        5.8
## 190                                Drama  November 11, 2020      93        5.8
## 191                      Romantic comedy    October 2, 2020     111        5.8
## 192                                Drama      April 6, 2018      75        5.9
## 193                             Thriller   January 17, 2020     120        5.9
## 194                         Sports-drama      April 6, 2018      96        5.9
## 195                         Zombie/Heist       May 21, 2021     148        5.9
## 196                 Psychological horror  November 16, 2018      94        5.9
## 197                              Mystery  November 15, 2019     107        5.9
## 198                         Mockumentary      July 16, 2019      32        5.9
## 199                                Drama   February 7, 2020     104        5.9
## 200                          Documentary September 28, 2018      23        5.9
## 201                      Romantic comedy     March 27, 2020     111        5.9
## 202                             Thriller     March 27, 2020      83        5.9
## 203                          Documentary    January 1, 2021      53        5.9
## 204                         Comedy-drama   January 12, 2018      95        5.9
## 205                              Musical  December 11, 2020     132        5.9
## 206                        Action comedy  November 11, 2016      98        5.9
## 207                          Sports film     March 20, 2020     108        5.9
## 208                               Biopic     April 13, 2018     106        6.0
## 209                                Drama        May 4, 2018     104        6.0
## 210             Science fiction/Thriller   January 27, 2017      90        6.0
## 211                                Drama     August 9, 2019     106        6.0
## 212                                Drama      March 8, 2019      90        6.0
## 213                       Comedy mystery      June 14, 2019      97        6.0
## 214                            Superhero    August 14, 2020     113        6.0
## 215                    Romantic thriller   October 21, 2020     123        6.0
## 216                     Christmas comedy  November 25, 2020     115        6.0
## 217                      Romantic comedy       May 11, 2018     105        6.0
## 218                      Romantic comedy  November 16, 2018     101        6.0
## 219                      Romantic comedy  February 12, 2020     102        6.0
## 220                           War-Comedy       May 26, 2017     122        6.0
## 221                               Action  December 13, 2019     128        6.1
## 222                               Comedy September 20, 2019      82        6.1
## 223                                Drama     March 10, 2017     102        6.1
## 224                          Documentary     April 28, 2017      80        6.1
## 225                                Drama     March 17, 2017      94        6.1
## 226                               Family   January 29, 2021     123        6.1
## 227              Romantic comedy/Holiday   October 28, 2020     104        6.1
## 228                    Adventure-romance   November 1, 2019      85        6.1
## 229                          Documentary       May 29, 2015      84        6.1
## 230                               Comedy     August 3, 2018     103        6.1
## 231                          Crime drama     March 13, 2020      95        6.1
## 232                               Comedy     August 2, 2019     100        6.1
## 233                            Adventure     March 18, 2016      89        6.1
## 234                          Crime drama   October 30, 2020     116        6.1
## 235                               Biopic     April 17, 2020     118        6.1
## 236                                Drama    January 8, 2021      96        6.1
## 237                                Drama      April 1, 2021     114        6.1
## 238                              Western  November 10, 2017      99        6.1
## 239                      Romantic comedy       May 22, 2020      87        6.1
## 240                               Biopic     March 24, 2017      92        6.1
## 241                      Horror-thriller       May 24, 2019      90        6.1
## 242                                Drama   January 15, 2021      95        6.1
## 243                             Thriller    August 28, 2020      96        6.1
## 244                         Dance comedy     August 7, 2020      93        6.1
## 245                          Stop Motion  November 20, 2020      42        6.2
## 246                               Biopic       May 26, 2021      92        6.2
## 247                                Drama   January 29, 2021     106        6.2
## 248                                Drama   November 6, 2020     151        6.2
## 249                         Comedy-drama    August 17, 2020     101        6.2
## 250                               Comedy      April 9, 2021     114        6.2
## 251                         Sports-drama   February 8, 2019      90        6.2
## 252                             Thriller September 27, 2019     115        6.2
## 253                             Thriller      June 19, 2020      92        6.2
## 254                            Animation    August 14, 2020      72        6.2
## 255                             Thriller      July 24, 2020     139        6.2
## 256                               Biopic     March 23, 2018      98        6.2
## 257                      Romantic comedy     April 19, 2019      92        6.2
## 258                        Action comedy      March 6, 2020     111        6.2
## 259                                Drama September 14, 2018      98        6.2
## 260                          Documentary     April 27, 2018     104        6.2
## 261                          Documentary   December 1, 2017      95        6.2
## 262                               Comedy      April 7, 2017      88        6.2
## 263                   Horror/Crime drama   October 20, 2017     102        6.3
## 264                          Documentary       May 22, 2019      30        6.3
## 265                      Romantic comedy       June 8, 2018      99        6.3
## 266                      Horror-thriller   October 12, 2018     129        6.3
## 267                          Family film     March 16, 2018      87        6.3
## 268                        Urban fantasy  December 22, 2017     117        6.3
## 269                         Drama/Horror       May 18, 2018     104        6.3
## 270                                Drama      April 2, 2021     111        6.3
## 271                  Family/Comedy-drama      June 19, 2020     107        6.3
## 272                               Comedy     March 18, 2021      97        6.3
## 273                      Romantic comedy     April 13, 2018      98        6.3
## 274                                Drama   January 28, 2021      90        6.3
## 275                                Drama     April 19, 2019     101        6.3
## 276                          Documentary       May 26, 2021      72        6.3
## 277                                Drama  November 24, 2020      83        6.3
## 278                               Action   January 25, 2019     118        6.3
## 279                               Comedy  December 21, 2018      44        6.3
## 280                                  War     April 21, 2017     113        6.3
## 281                       Crime thriller       June 9, 2017      86        6.3
## 282               Science fiction/Action   December 9, 2016     108        6.3
## 283                   Teen comedy horror   October 13, 2017      85        6.3
## 284                Science fiction/Drama     March 31, 2017     102        6.3
## 285                                Drama   October 11, 2019     151        6.3
## 286                         Comedy-drama   October 18, 2019      98        6.3
## 287                          Documentary     March 29, 2019      87        6.3
## 288                          Crime drama      March 9, 2018     120        6.3
## 289                             Thriller     April 23, 2020     134        6.3
## 290                      Romantic comedy  February 12, 2021     109        6.3
## 291                          Documentary    August 28, 2019      85        6.3
## 292                                Drama     March 27, 2020     103        6.3
## 293                          Documentary     August 5, 2020      94        6.4
## 294                         Concert Film  December 21, 2020      97        6.4
## 295             Science fiction/Thriller September 16, 2016      88        6.4
## 296                          Documentary September 25, 2019      37        6.4
## 297                       Musical comedy  December 24, 2019     112        6.4
## 298                         Sports-drama     March 30, 2018     102        6.4
## 299                             Thriller   October 11, 2019     100        6.4
## 300                                Drama  February 16, 2018      96        6.4
## 301                      Romantic comedy  February 14, 2020     113        6.4
## 302                          Documentary    August 20, 2020      16        6.4
## 303                       Romantic drama  February 11, 2021     119        6.4
## 304                          Documentary     April 29, 2020      97        6.4
## 305                          Documentary  December 13, 2014      81        6.4
## 306                         Comedy-drama September 21, 2018      98        6.4
## 307          Animation/Musical/Adventure   October 23, 2020      95        6.4
## 308                                Drama   October 12, 2019      96        6.4
## 309                          Documentary September 15. 2017     107        6.4
## 310                 Animation / Musicial September 27, 2019      41        6.4
## 311                          Documentary     March 16, 2018      87        6.4
## 312                         Comedy-drama   January 14, 2021     101        6.4
## 313                          Documentary        May 5, 2017      97        6.4
## 314                             Thriller     March 25, 2020     103        6.4
## 315           Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 316                      Action-thriller     March 13, 2019     125        6.4
## 317                          Documentary September 28, 2018     116        6.4
## 318                                Drama      March 8, 2019      99        6.4
## 319                      Action thriller   October 20, 2017      82        6.4
## 320                      Romantic comedy   February 9, 2018      97        6.4
## 321                          Documentary   October 28, 2019      28        6.5
## 322                              Romance  February 28, 2020     108        6.5
## 323                                Drama    August 28, 2020      93        6.5
## 324                Anime/Science fiction     March 19, 2020      74        6.5
## 325                          Documentary     March 21, 2019      60        6.5
## 326                    Animation / Short  December 11, 2020       9        6.5
## 327                          Documentary     April 17, 2021      21        6.5
## 328                               Comedy       May 31, 2019     100        6.5
## 329                            War drama      June 12, 2020     155        6.5
## 330                          Documentary      April 7, 2021      55        6.5
## 331                       Musical comedy      June 26, 2020     123        6.5
## 332                      Horror thriller September 29, 2017     103        6.5
## 333                             Thriller   October 30, 2020      93        6.5
## 334             Family/Christmas musical  November 13, 2020     119        6.5
## 335                          Documentary      June 14, 2019      40        6.5
## 336                                Drama      June 15, 2018     120        6.5
## 337                                Drama        May 7, 2021      98        6.5
## 338                            Adventure   December 7, 2018     104        6.5
## 339                                Drama      June 24, 2020      91        6.5
## 340                          Documentary      June 23, 2017      95        6.5
## 341             Science fiction thriller       May 12, 2021     101        6.5
## 342                      Romantic comedy      June 15, 2018     105        6.5
## 343                               Comedy      July 28, 2017      83        6.5
## 344                                Drama     April 10, 2020      91        6.5
## 345                              Romance     April 21, 2017      83        6.5
## 346                        Drama / Short   January 20, 2020      17        6.5
## 347           Hidden-camera prank comedy     March 26, 2021      86        6.6
## 348               Psychological thriller  December 21, 2018     124        6.6
## 349                               Horror      June 24, 2020      94        6.6
## 350                      Romantic comedy  February 26, 2021     102        6.6
## 351                              Romance       June 7, 2019     118        6.6
## 352                          Documentary    August 19, 2016      79        6.6
## 353               Psychological thriller  September 4, 2020     134        6.6
## 354                          Documentary   October 25, 2019     126        6.6
## 355                                Drama        May 7, 2021      98        6.6
## 356                          Documentary      June 29, 2018      89        6.6
## 357                          Documentary   December 7, 2018      58        6.6
## 358                          Documentary  November 23, 2020      83        6.6
## 359                      Science fiction   February 5, 2021     136        6.6
## 360                          Documentary   December 7, 2018      98        6.6
## 361                         Spy thriller September 14, 2018     114        6.6
## 362                          Crime drama    August 20, 2020      99        6.6
## 363                         Spy thriller      July 31, 2019     130        6.6
## 364                          Documentary   January 15, 2021      32        6.6
## 365                        Anime/Fantasy      June 18, 2020     104        6.7
## 366                                Drama     April 16, 2021     142        6.7
## 367              Animated musical comedy     April 16, 2021      92        6.7
## 368                          Documentary  November 20, 2019      86        6.7
## 369                Anime/Science fiction       May 20, 2017     106        6.7
## 370                                Drama       May 27, 2021      95        6.7
## 371                          Documentary      June 16, 2017      91        6.7
## 372                          Documentary   January 11, 2021      89        6.7
## 373                               Action     April 24, 2020     117        6.7
## 374                          Documentary  December 11, 2020      90        6.7
## 375                                Drama  November 24, 2020     117        6.7
## 376                          Documentary September 15, 2020      80        6.7
## 377                                Drama   February 3, 2017      87        6.7
## 378                               Comedy   December 3, 2020     101        6.7
## 379                          Documentary   October 28, 2019      19        6.7
## 380                       Romantic drama   February 5, 2021     106        6.7
## 381                         Variety Show   February 7, 2017      54        6.7
## 382                                Drama      March 3, 2021     111        6.7
## 383                                Drama      April 9, 2021     132        6.7
## 384                                Drama     March 12, 2021      97        6.7
## 385                          Documentary      July 10, 2019     106        6.7
## 386                         Comedy-drama      July 29, 2016     111        6.7
## 387                     Superhero/Action      July 10, 2020     124        6.7
## 388                          Documentary      July 15. 2016     116        6.7
## 389                                Drama   October 18, 2019     112        6.7
## 390                                Drama   October 10, 2018     144        6.8
## 391                                Drama   October 28, 2016      76        6.8
## 392                  Biographical/Comedy   January 26, 2018     101        6.8
## 393                          Documentary     March 20, 2020      92        6.8
## 394                          Documentary September 21, 2020      19        6.8
## 395                          Documentary        May 3, 2019      39        6.8
## 396                      Romantic comedy       May 31, 2019     102        6.8
## 397                          Documentary        May 6, 2020      89        6.8
## 398                               Comedy     August 3, 2018     105        6.8
## 399                             Thriller      June 29, 2018     101        6.8
## 400                               Comedy  December 27, 2020      70        6.8
## 401                          Documentary September 17, 2020      96        6.8
## 402                          Documentary       May 11, 2020      85        6.8
## 403                          Documentary September 12, 2017      39        6.8
## 404                          Documentary     April 20, 2018      79        6.8
## 405                          Documentary  November 21, 2017      73        6.8
## 406                                Drama    October 2, 2020     114        6.8
## 407                                Drama September 30, 2020     121        6.8
## 408                Aftershow / Interview September 30, 2020      28        6.8
## 409                                Drama  November 13, 2020      95        6.8
## 410                                Drama   November 2, 2018     122        6.8
## 411                          Documentary   February 9, 2018      23        6.8
## 412                                Drama      July 14, 2017     107        6.8
## 413                          Documentary    January 6, 2021      98        6.8
## 414                             Thriller  December 24, 2020     108        6.9
## 415                          Documentary September 30, 2016      92        6.9
## 416                          Documentary    October 8, 2020     100        6.9
## 417                          Documentary      March 1, 2021      97        6.9
## 418                    Animation / Short  December 28, 2020       7        6.9
## 419                                Drama  February 24, 2017      96        6.9
## 420                          Documentary       May 19, 2017     100        6.9
## 421                               Biopic   December 4, 2020     132        6.9
## 422                              Romance September 29, 2017     103        6.9
## 423                      Historical-epic   November 9, 2018     121        6.9
## 424                         Comedy-drama     March 26, 2021     114        6.9
## 425                          Documentary   October 12, 2018      57        6.9
## 426                          Documentary   February 9, 2018      95        6.9
## 427                          Documentary       June 3, 2020      83        6.9
## 428                          Documentary      July 10, 2020      17        6.9
## 429                              Romance        May 1, 2020     105        6.9
## 430                          Crime drama     March 29, 2019     131        6.9
## 431                     Comedy / Musical       May 23, 2019      30        6.9
## 432                         Comedy-drama   October 13, 2017     112        6.9
## 433                          Documentary   October 12, 2018      86        7.0
## 434                          Documentary September 22, 2017     100        7.0
## 435                Aftershow / Interview   November 3, 2020      14        7.0
## 436                          Documentary   October 13, 2017     109        7.0
## 437                          Documentary  November 20, 2019      28        7.0
## 438                          Documentary September 15, 2019      64        7.0
## 439                                Drama  December 18, 2020      94        7.0
## 440                Aftershow / Interview  December 18, 2020      31        7.0
## 441                          Documentary     March 17, 2021      99        7.0
## 442                          Documentary  February 23, 2021     108        7.0
## 443                          Documentary     April 26, 2019      48        7.0
## 444                          Documentary       May 17, 2019      84        7.0
## 445                          Documentary     March 22, 2019      70        7.0
## 446                          Documentary  September 1, 2017      27        7.0
## 447                   Animation / Comedy     August 9, 2019      45        7.0
## 448                               Comedy   December 9, 2020     117        7.0
## 449   Christmas/Fantasy/Adventure/Comedy  November 22, 2018     104        7.0
## 450                               Biopic     March 22, 2019     108        7.0
## 451                      Action-thriller   October 19, 2018     121        7.0
## 452                Aftershow / Interview   January 26, 2017      36        7.1
## 453                            Animation  November 30, 2018      30        7.1
## 454                            Animation   December 1, 2020      47        7.1
## 455                                Drama      June 19, 2019     110        7.1
## 456                          Documentary     April 22, 2020      92        7.1
## 457                          Documentary  November 27, 2020      80        7.1
## 458                    Mentalism special   October 19, 2018      49        7.1
## 459                          Documentary  December 27, 2019      73        7.1
## 460                          Documentary        May 4, 2018      40        7.1
## 461                          Documentary September 10, 2019      96        7.1
## 462                          Crime drama       May 14, 2021     106        7.1
## 463                          Documentary     April 20, 2019      97        7.1
## 464                          Documentary   October 27, 2020      94        7.1
## 465                          Documentary       May 26, 2017      78        7.1
## 466                          Documentary September 18, 2015      81        7.1
## 467                          Documentary        May 1, 2019      87        7.1
## 468                         One-man show  November 13, 2018      91        7.1
## 469                          Documentary     March 18, 2016      91        7.1
## 470                          Documentary   October 20, 2017      95        7.1
## 471                                Drama    January 7, 2021     126        7.1
## 472                          Documentary      April 6, 2018      31        7.1
## 473                          Documentary   November 2, 2018      58        7.1
## 474                          Documentary   October 15, 2020      41        7.1
## 475               Psychological thriller September 16, 2020     138        7.1
## 476                                Drama   January 29, 2021     112        7.1
## 477                          Documentary      July 24, 2019     114        7.1
## 478                                Drama   January 22, 2021     125        7.1
## 479                      Romantic comedy    August 17, 2018      99        7.1
## 480                          Documentary September 30, 2020      82        7.2
## 481                          Documentary September 23, 2016      98        7.2
## 482                                Drama September 15, 2017     136        7.2
## 483                          Documentary   January 18, 2019      97        7.2
## 484                          Documentary   October 28, 2016     107        7.2
## 485                          Documentary     April 10, 2020      92        7.2
## 486                          Documentary      March 8, 2018      39        7.2
## 487                      Romantic comedy  February 14, 2018     133        7.2
## 488                         Drama-Comedy  February 22, 2019      89        7.2
## 489                                Drama    October 5, 2018     124        7.2
## 490           Coming-of-age comedy-drama   October 18, 2019      99        7.2
## 491                                Drama        May 1, 2018     101        7.2
## 492                          Crime drama   January 18, 2019      97        7.2
## 493                               Comedy    October 9, 2020     124        7.2
## 494                                Drama     April 30, 2021     129        7.2
## 495                          Documentary      June 19, 2019     121        7.2
## 496                     Historical drama   November 1, 2019     140        7.2
## 497                            Making-of   October 29, 2019      13        7.2
## 498                                  War    October 7, 2016     108        7.2
## 499                          Documentary    August 10, 2018      11        7.2
## 500                               Biopic   October 25, 2019     118        7.3
## 501                          Crime drama   October 11, 2019     121        7.3
## 502                          Documentary September 13, 2016      24        7.3
## 503                          Documentary      July 17, 2020     100        7.3
## 504                          Documentary       May 12, 2017     101        7.3
## 505                                Drama       May 27, 2020     105        7.3
## 506                          Documentary       July 8, 2020      96        7.3
## 507                            Animation   October 13, 2020      47        7.3
## 508                     Action-adventure      June 28, 2017     121        7.3
## 509                          Crime drama September 12, 2018     100        7.3
## 510                             Thriller      July 31, 2020     149        7.3
## 511                          Documentary   January 11, 2019      64        7.3
## 512                          Documentary   February 8, 2019      64        7.3
## 513                          Documentary   October 28, 2020     114        7.3
## 514                    Animation / Short      March 8, 2020      15        7.3
## 515                          Documentary   October 14, 2016      79        7.3
## 516                          Documentary     April 29, 2016      90        7.3
## 517                              Western  November 16, 2018     132        7.3
## 518                          Documentary    October 6, 2017     105        7.3
## 519                         Comedy-drama      June 24, 2016      97        7.3
## 520                          Documentary       May 22, 2015      83        7.3
## 521                          Documentary    August 21, 2019     110        7.4
## 522                          Documentary   November 1, 2019      39        7.4
## 523                          Documentary September 29, 2017      40        7.4
## 524                          Documentary   January 31, 2020      85        7.4
## 525                          Documentary  February 12, 2019      26        7.4
## 526                         Concert Film  November 25, 2020      87        7.4
## 527                          Documentary   October 26, 2018      97        7.4
## 528                          Documentary       June 7, 2019     118        7.4
## 529                Aftershow / Interview  November 27, 2019      23        7.4
## 530                          Documentary      July 29, 2020      40        7.4
## 531                          Documentary   November 2, 2018      98        7.4
## 532                          Documentary      July 17, 2015      80        7.4
## 533                         Concert Film  November 22, 2017     108        7.5
## 534                          Documentary   October 14, 2020      79        7.5
## 535                          Documentary  September 7, 2018      74        7.5
## 536                          Documentary    October 2, 2020      90        7.5
## 537                          Documentary     April 17, 2019     137        7.5
## 538          Animation / Science Fiction    August 16, 2019      71        7.5
## 539                          Documentary   October 27. 2017      98        7.5
## 540                         Variety show  December 24, 2019      70        7.5
## 541                          Documentary September 13, 2018      99        7.5
## 542                          Documentary September 16. 2016      40        7.5
## 543                          Documentary      June 24, 2020     104        7.6
## 544                Anthology/Dark comedy  November 12, 2020     149        7.6
## 545                          Documentary September 21, 2018     124        7.6
## 546                          Documentary      June 12, 2019     144        7.6
## 547                          Documentary   October 18, 2019      85        7.6
## 548                          Documentary      July 27, 2018     100        7.6
## 549                          Documentary  September 9, 2020      94        7.6
## 550                                Drama  December 20, 2019     125        7.6
## 551                          Documentary      June 26, 2015      84        7.6
## 552                                Drama  February 21, 2020     117        7.6
## 553                      Musical / Short      June 27, 2019      15        7.7
## 554                            War drama   October 16, 2015     136        7.7
## 555                          Documentary     April 19, 2019      76        7.7
## 556                          Documentary     March 25, 2020     108        7.7
## 557                          Documentary  November 17, 2017      94        7.7
## 558                         Concert Film   October 12, 2016      90        7.7
## 559                            Making-of  February 11, 2020      72        7.7
## 560                                Drama  December 14, 2018     135        7.7
## 561                    Animation / Short  November 20, 2020      12        7.8
## 562                          Crime drama  November 27, 2019     209        7.8
## 563                                Drama   October 16, 2020     130        7.8
## 564                          Documentary     April 29, 2020      82        7.9
## 565                          Documentary     August 4, 2017     120        7.9
## 566                                Drama   December 6, 2019     136        7.9
## 567                          Documentary   November 4, 2016     112        7.9
## 568                          Documentary  December 21, 2018     105        8.0
## 569                          Documentary      July 14, 2017      89        8.1
## 570                          Documentary  September 7, 2020      85        8.1
## 571                          Documentary    August 26, 2020     106        8.1
## 572                          Documentary    October 7, 2016     100        8.2
## 573                          Documentary      June 19, 2020     107        8.2
## 574 Animation/Christmas/Comedy/Adventure  November 15, 2019      97        8.2
## 575                          Documentary     March 24, 2021      89        8.2
## 576                          Documentary   October 14, 2020     109        8.2
## 577                          Documentary  November 24, 2017     114        8.3
## 578                          Documentary   October 23, 2019      51        8.3
## 579                         Concert Film       May 20, 2020      85        8.4
## 580                         Concert Film  December 31, 2018     125        8.4
## 581                          Documentary    October 9, 2015      91        8.4
## 582                         One-man show  December 16, 2018     153        8.5
## 583                          Documentary   December 8, 2020      89        8.6
## 584                          Documentary    October 4, 2020      83        9.0
##                       Language
## 1             English/Japanese
## 2                      Spanish
## 3                      Italian
## 4                      English
## 5                        Hindi
## 6                        Hindi
## 7                      Turkish
## 8                      English
## 9                      English
## 10                       Hindi
## 11                     English
## 12                      Korean
## 13                  Indonesian
## 14                       Malay
## 15                     English
## 16                     Spanish
## 17                       Hindi
## 18                     English
## 19                      Korean
## 20                     English
## 21                     English
## 22                     English
## 23                     English
## 24                       Hindi
## 25                     English
## 26                     English
## 27                       Dutch
## 28                     English
## 29                      French
## 30                     Italian
## 31             English/Spanish
## 32                     English
## 33                      French
## 34                  Portuguese
## 35                     English
## 36                     Italian
## 37                      French
## 38                    Filipino
## 39                     English
## 40                      French
## 41                     English
## 42                     Italian
## 43                     English
## 44                      German
## 45                     English
## 46                       Hindi
## 47                      Polish
## 48                     English
## 49                     English
## 50                     English
## 51                      French
## 52                     English
## 53                     English
## 54                     Spanish
## 55                  Portuguese
## 56                     English
## 57                  Indonesian
## 58                     English
## 59                      Polish
## 60                   Norwegian
## 61                     English
## 62                     English
## 63                     English
## 64                  Indonesian
## 65                     English
## 66                     English
## 67                     English
## 68                     English
## 69                     English
## 70                     English
## 71                     Marathi
## 72                        Thai
## 73                     English
## 74                     English
## 75                     English
## 76                     English
## 77                     English
## 78                     English
## 79                     English
## 80                     English
## 81                     English
## 82                     English
## 83                     Italian
## 84                     English
## 85                     English
## 86                      French
## 87                     English
## 88                       Hindi
## 89                     Spanish
## 90                      French
## 91                     English
## 92                      French
## 93                     Spanish
## 94                     English
## 95                     English
## 96                     English
## 97                     Spanish
## 98                       Hindi
## 99                      German
## 100                    English
## 101                      Hindi
## 102                    English
## 103                     French
## 104                    English
## 105                    English
## 106                    English
## 107                    Italian
## 108                    English
## 109                    English
## 110                   Filipino
## 111                 Portuguese
## 112                    English
## 113                      Hindi
## 114                    English
## 115                    English
## 116                    English
## 117                    English
## 118                    Swedish
## 119                   Japanese
## 120                    English
## 121                    English
## 122                    English
## 123                    English
## 124                    English
## 125                    English
## 126                    English
## 127             Spanish/Basque
## 128                    English
## 129                 Portuguese
## 130                    English
## 131                    English
## 132                    English
## 133                    Turkish
## 134                    English
## 135                    English
## 136                    Italian
## 137                    English
## 138                    Spanish
## 139                    English
## 140                    English
## 141                    English
## 142                    English
## 143                    Italian
## 144                    English
## 145                    Spanish
## 146                    English
## 147                    English
## 148                      Hindi
## 149                    English
## 150                    English
## 151                    English
## 152                       Thai
## 153                    English
## 154                    English
## 155                     Polish
## 156                    English
## 157                    English
## 158                    English
## 159                    English
## 160                    English
## 161                    English
## 162                    Marathi
## 163                    English
## 164                    English
## 165                    English
## 166                    English
## 167                    English
## 168                    English
## 169                      Hindi
## 170                      Hindi
## 171                    English
## 172                    English
## 173                    English
## 174                    English
## 175                    English
## 176                    English
## 177                      Hindi
## 178                 Portuguese
## 179                     German
## 180                    English
## 181                    English
## 182                    English
## 183                    English
## 184                    English
## 185                    English
## 186                    English
## 187                      Dutch
## 188                    English
## 189                    English
## 190                     German
## 191                    Spanish
## 192                    English
## 193                    English
## 194                    English
## 195                    English
## 196                    English
## 197                    English
## 198                    English
## 199                    English
## 200                    English
## 201                      Hindi
## 202                     French
## 203                    English
## 204                    English
## 205                    English
## 206                    English
## 207                    Italian
## 208                    English
## 209                    Italian
## 210                    English
## 211                      Hindi
## 212                    English
## 213                    English
## 214                    English
## 215                    English
## 216                    English
## 217                    English
## 218                    English
## 219                    English
## 220                    English
## 221                    English
## 222                    English
## 223                    English
## 224                    English
## 225                    English
## 226                    English
## 227                    English
## 228                    English
## 229                    English
## 230                    English
## 231                    English
## 232                    English
## 233                    English
## 234                     French
## 235                    English
## 236                    Turkish
## 237                 Indonesian
## 238                 Portuguese
## 239                    English
## 240                    English
## 241                    English
## 242                      Hindi
## 243                    Spanish
## 244                    English
## 245                    English
## 246                    Italian
## 247                    Spanish
## 248                    English
## 249                 Indonesian
## 250                    Turkish
## 251                    English
## 252                    English
## 253                     French
## 254                    English
## 255                    Spanish
## 256                    English
## 257                    English
## 258                    English
## 259                    English
## 260                    English
## 261                    English
## 262                    English
## 263                    English
## 264            English/Spanish
## 265                    English
## 266                    English
## 267                    English
## 268                    English
## 269                    English
## 270                    English
## 271                    English
## 272                 Portuguese
## 273                     French
## 274                 Indonesian
## 275                      Hindi
## 276                    English
## 277                    Spanish
## 278                    English
## 279                 Portuguese
## 280                    English
## 281                    English
## 282                    English
## 283                    English
## 284                    English
## 285                   Japanese
## 286                    English
## 287                    English
## 288           English/Japanese
## 289                     Korean
## 290                    English
## 291                    English
## 292                    English
## 293                     French
## 294                    English
## 295                    English
## 296            English/Spanish
## 297                    Spanish
## 298                    English
## 299                    English
## 300                    English
## 301                     German
## 302                    English
## 303                 Indonesian
## 304                    English
## 305                    English
## 306                    English
## 307                    English
## 308                     French
## 309                    English
## 310                    English
## 311                    English
## 312                 Indonesian
## 313                    English
## 314                    Spanish
## 315                    English
## 316                    English
## 317            Spanish/Catalan
## 318                    English
## 319                    English
## 320                    English
## 321            English/Spanish
## 322                    English
## 323                    English
## 324                   Japanese
## 325                     French
## 326                    English
## 327                    English
## 328                      Hindi
## 329                    English
## 330                    English
## 331                    English
## 332                    English
## 333                    English
## 334                    English
## 335            English/Swedish
## 336                      Hindi
## 337                    English
## 338                    English
## 339                    Spanish
## 340                    English
## 341                     French
## 342                    English
## 343                    English
## 344 English/Taiwanese/Mandarin
## 345                    English
## 346                    English
## 347                    English
## 348                    English
## 349                      Hindi
## 350                    Spanish
## 351                    Spanish
## 352                    English
## 353                    English
## 354                    English
## 355                      Hindi
## 356                    English
## 357                    English
## 358                    English
## 359                     Korean
## 360                    English
## 361                    English
## 362                    Spanish
## 363                    English
## 364                    English
## 365                   Japanese
## 366                      Hindi
## 367                    English
## 368                    English
## 369                   Japanese
## 370                    English
## 371                    English
## 372                    English
## 373                    English
## 374                    English
## 375                    English
## 376               Thia/English
## 377                    English
## 378                 Portuguese
## 379                   Japanese
## 380                    English
## 381                    English
## 382                    English
## 383                     Korean
## 384                    Turkish
## 385                    Spanish
## 386                    English
## 387                    English
## 388                    English
## 389                      Hindi
## 390                    English
## 391                    Spanish
## 392                    English
## 393                    Spanish
## 394                    English
## 395           English/Mandarin
## 396                    English
## 397                    English
## 398                      Hindi
## 399                    English
## 400                    English
## 401                     French
## 402                    English
## 403                    English
## 404                    English
## 405                    English
## 406                      Hindi
## 407                    English
## 408                    English
## 409                    Italian
## 410                    English
## 411                   Georgian
## 412                    English
## 413                     French
## 414                      Hindi
## 415                    English
## 416                     French
## 417                    English
## 418                    English
## 419                    English
## 420                 Portuguese
## 421                    English
## 422                    English
## 423                    English
## 424                      Hindi
## 425                    English
## 426                    English
## 427                    English
## 428                    English
## 429                    English
## 430                    English
## 431                    English
## 432                    English
## 433                    English
## 434                    English
## 435                    English
## 436                    English
## 437                    Spanish
## 438                    Spanish
## 439                    English
## 440                    English
## 441                    English
## 442                    English
## 443                    English
## 444                    English
## 445                    English
## 446                    English
## 447                    English
## 448                    Italian
## 449                    English
## 450                    English
## 451                 Indonesian
## 452                    English
## 453                    English
## 454                    English
## 455                    English
## 456                    English
## 457                    English
## 458                    English
## 459                    Spanish
## 460                    English
## 461                    English
## 462                      Dutch
## 463                    English
## 464                    Spanish
## 465                    English
## 466                    English
## 467                    English
## 468                    English
## 469                    English
## 470                    English
## 471                    English
## 472                    English
## 473                    English
## 474                    Bengali
## 475                    English
## 476                    English
## 477                    English
## 478                    English
## 479                    English
## 480                    English
## 481                    English
## 482       Khmer/English/French
## 483                    English
## 484                    English
## 485                    English
## 486              English/Hindi
## 487                      Hindi
## 488                    English
## 489                    English
## 490                    Spanish
## 491                      Tamil
## 492                      Hindi
## 493                    English
## 494                    Marathi
## 495                 Portuguese
## 496                    English
## 497                    English
## 498                    English
## 499                    English
## 500                    English
## 501                    English
## 502                    English
## 503                    English
## 504                    English
## 505                    Spanish
## 506            Spanish/English
## 507                    English
## 508             English/Korean
## 509                    Italian
## 510                      Hindi
## 511            English/Spanish
## 512                    English
## 513             English/Arabic
## 514                    English
## 515           English/Mandarin
## 516            English/Russian
## 517                    English
## 518                    English
## 519                    English
## 520                    English
## 521                    English
## 522                    English
## 523                    English
## 524                    English
## 525              English/Hindi
## 526                    English
## 527                    English
## 528                    English
## 529                    English
## 530                    English
## 531                    English
## 532                    English
## 533                    English
## 534                     Korean
## 535                    English
## 536                    English
## 537                    English
## 538                    English
## 539                    English
## 540                    English
## 541                    English
## 542                    English
## 543                    English
## 544                      Hindi
## 545                    English
## 546                    English
## 547                    English
## 548                    English
## 549                    English
## 550                    English
## 551                    English
## 552                      Hindi
## 553                    English
## 554               English/Akan
## 555                    English
## 556                    English
## 557                    English
## 558                    English
## 559                    Spanish
## 560                    Spanish
## 561                    English
## 562                    English
## 563                    English
## 564                    English
## 565                    English
## 566                    English
## 567                    English
## 568                    English
## 569                    English
## 570                    English
## 571                    English
## 572                    English
## 573                    English
## 574                    English
## 575                    English
## 576                    Spanish
## 577                    English
## 578                    English
## 579                    English
## 580                    English
## 581   English/Ukranian/Russian
## 582                    English
## 583                 Portuguese
## 584                    English
ls.str(df)
## Genre :  chr [1:584] "Documentary" "Thriller" "Science fiction/Drama" ...
## IMDB.Score :  num [1:584] 2.5 2.6 2.6 3.2 3.4 3.5 3.7 3.7 3.9 4.1 ...
## Language :  chr [1:584] "English/Japanese" "Spanish" "Italian" "English" "Hindi" ...
## Premiere :  chr [1:584] "August 5, 2019" "August 21, 2020" "December 26, 2019" ...
## Runtime :  int [1:584] 58 81 79 94 90 147 112 149 73 139 ...
## Title :  chr [1:584] "Enter the Anime" "Dark Forces" "The App" "The Open House" ...
names(df)
## [1] "Title"      "Genre"      "Premiere"   "Runtime"    "IMDB.Score"
## [6] "Language"
attach(df)
table(df$Genre)
## 
##                               Action                     Action-adventure 
##                                    7                                    1 
##                      Action-thriller                        Action comedy 
##                                    3                                    5 
##                      Action thriller                        Action/Comedy 
##                                    1                                    1 
##               Action/Science fiction                            Adventure 
##                                    1                                    2 
##                    Adventure-romance                     Adventure/Comedy 
##                                    1                                    1 
##                Aftershow / Interview              Animated musical comedy 
##                                    6                                    1 
##                            Animation                   Animation / Comedy 
##                                    5                                    1 
##                 Animation / Musicial          Animation / Science Fiction 
##                                    1                                    1 
##                    Animation / Short Animation/Christmas/Comedy/Adventure 
##                                    4                                    1 
##           Animation/Comedy/Adventure          Animation/Musical/Adventure 
##                                    1                                    1 
##                  Animation/Superhero                        Anime / Short 
##                                    1                                    1 
##                        Anime/Fantasy                Anime/Science fiction 
##                                    1                                    2 
##                Anthology/Dark comedy                  Biographical/Comedy 
##                                    1                                    1 
##                               Biopic                         Black comedy 
##                                    9                                    2 
##                    Christian musical                     Christmas comedy 
##                                    1                                    1 
##                    Christmas musical   Christmas/Fantasy/Adventure/Comedy 
##                                    1                                    1 
##                               Comedy                         Comedy-drama 
##                                   49                                   14 
##                     Comedy / Musical                        Comedy horror 
##                                    2                                    1 
##                       Comedy mystery                Comedy/Fantasy/Family 
##                                    1                                    1 
##                        Comedy/Horror           Coming-of-age comedy-drama 
##                                    1                                    1 
##                         Concert Film                          Crime drama 
##                                    6                                   11 
##                       Crime thriller                         Dance comedy 
##                                    1                                    1 
##                          Dark comedy                          Documentary 
##                                    2                                  159 
##                                Drama                         Drama-Comedy 
##                                   77                                    1 
##                        Drama / Short                         Drama/Horror 
##                                    1                                    1 
##                               Family                          Family film 
##                                    2                                    2 
##             Family/Christmas musical                  Family/Comedy-drama 
##                                    1                                    1 
##                              Fantasy                                Heist 
##                                    1                                    1 
##                  Heist film/Thriller           Hidden-camera prank comedy 
##                                    1                                    1 
##                      Historical-epic                     Historical drama 
##                                    1                                    1 
##                               Horror                      Horror-thriller 
##                                    9                                    2 
##                     Horror anthology                        Horror comedy 
##                                    1                                    1 
##                      Horror thriller                   Horror/Crime drama 
##                                    3                                    1 
##                            Making-of                    Mentalism special 
##                                    2                                    1 
##                         Mockumentary                              Musical 
##                                    2                                    2 
##                      Musical / Short                       Musical comedy 
##                                    1                                    2 
##              Musical/Western/Fantasy                              Mystery 
##                                    1                                    2 
##                         One-man show                   Political thriller 
##                                    3                                    1 
##                 Psychological horror               Psychological thriller 
##                                    1                                    4 
##         Psychological thriller drama                              Romance 
##                                    1                                    6 
##                        Romance drama                      Romantic comedy 
##                                    1                                   39 
##                Romantic comedy-drama              Romantic comedy/Holiday 
##                                    1                                    1 
##                       Romantic drama                  Romantic teen drama 
##                                    5                                    1 
##               Romantic teenage drama                    Romantic thriller 
##                                    1                                    1 
##                               Satire                      Science fiction 
##                                    2                                    4 
##            Science fiction adventure             Science fiction thriller 
##                                    1                                    1 
##               Science fiction/Action                Science fiction/Drama 
##                                    1                                    3 
##              Science fiction/Mystery             Science fiction/Thriller 
##                                    1                                    4 
##                         Sports-drama                          Sports film 
##                                    3                                    1 
##                         Spy thriller                          Stop Motion 
##                                    2                                    1 
##                            Superhero                     Superhero-Comedy 
##                                    2                                    1 
##                     Superhero/Action                   Supernatural drama 
##                                    1                                    1 
##                    Teen comedy-drama                   Teen comedy horror 
##                                    1                                    1 
##                             Thriller                        Urban fantasy 
##                                   33                                    1 
##                         Variety show                         Variety Show 
##                                    4                                    1 
##                                  War                           War-Comedy 
##                                    2                                    1 
##                            War drama                              Western 
##                                    2                                    3 
##                         Zombie/Heist 
##                                    1
table(df$Premiere)
## 
##      April 1, 2021     April 10, 2020     April 12, 2019     April 13, 2018 
##                  1                  4                  2                  2 
##     April 14, 2017     April 14, 2021     April 15, 2021     April 16, 2021 
##                  1                  2                  1                  2 
##     April 17, 2019     April 17, 2020     April 17, 2021     April 19, 2019 
##                  1                  3                  1                  3 
##      April 2, 2020      April 2, 2021     April 20, 2018     April 20, 2019 
##                  1                  3                  2                  1 
##     April 21, 2017     April 22, 2020     April 22, 2021     April 23, 2020 
##                  2                  2                  1                  1 
##     April 24, 2020     April 26, 2019     April 27, 2018     April 28, 2017 
##                  1                  1                  3                  3 
##     April 28, 2021     April 29, 2016     April 29, 2020     April 29, 2021 
##                  1                  2                  2                  1 
##      April 3, 2020     April 30, 2020     April 30, 2021      April 5, 2019 
##                  1                  2                  1                  1 
##      April 6, 2018      April 7, 2017      April 7, 2021      April 9, 2021 
##                  3                  1                  1                  3 
##    August 10, 2018    August 11, 2017    August 12, 2020    August 14, 2020 
##                  2                  1                  1                  3 
##    August 16, 2019    August 17, 2018    August 17, 2020    August 19, 2016 
##                  2                  1                  1                  1 
##     August 2, 2019    August 20, 2020    August 21, 2019    August 21, 2020 
##                  1                  2                  2                  3 
##    August 24, 2018    August 25, 2017    August 26, 2016    August 26, 2020 
##                  1                  1                  1                  1 
##    August 28, 2019    August 28, 2020    August 29, 2019     August 3, 2018 
##                  1                  2                  1                  2 
##    August 30, 2019     August 4, 2017     August 5, 2019     August 5, 2020 
##                  1                  1                  1                  1 
##     August 7, 2020     August 9, 2019   December 1, 2017   December 1, 2019 
##                  1                  2                  1                  1 
##   December 1, 2020  December 11, 2015  December 11, 2020  December 12, 2018 
##                  1                  1                  3                  1 
##  December 13, 2014  December 13, 2019  December 14, 2018  December 14, 2020 
##                  1                  1                  1                  1 
##  December 15, 2017  December 16, 2016  December 16, 2018  December 18, 2020 
##                  1                  1                  1                  2 
##  December 19, 2019  December 20, 2019  December 21, 2018  December 21, 2020 
##                  1                  1                  3                  1 
##  December 22, 2017  December 23, 2020  December 24, 2019  December 24, 2020 
##                  1                  1                  2                  1 
##  December 25, 2020  December 26, 2019  December 27, 2019  December 27, 2020 
##                  1                  1                  1                  1 
##  December 28, 2020   December 3, 2019   December 3, 2020  December 31, 2018 
##                  1                  1                  1                  1 
##   December 4, 2015   December 4, 2020   December 5, 2019   December 6, 2019 
##                  1                  3                  1                  1 
##   December 7, 2018   December 7, 2020   December 8, 2017   December 8, 2020 
##                  4                  1                  1                  1 
##   December 9, 2016   December 9, 2020   February 1, 2019  February 10, 2021 
##                  1                  1                  1                  1 
##  February 11, 2020  February 11, 2021  February 12, 2019  February 12, 2020 
##                  1                  3                  1                  1 
##  February 12, 2021  February 14, 2017  February 14, 2018  February 14, 2020 
##                  1                  1                  1                  1 
##  February 16, 2018  February 21, 2020  February 22, 2019  February 23, 2018 
##                  1                  2                  3                  1 
##  February 23, 2021  February 24, 2017  February 25, 2021  February 26, 2021 
##                  1                  1                  1                  2 
##  February 28, 2020   February 3, 2017   February 4, 2018   February 5, 2021 
##                  1                  1                  1                  4 
##   February 7, 2017   February 7, 2020   February 8, 2019   February 9, 2018 
##                  1                  1                  3                  3 
##    January 1, 2020    January 1, 2021   January 11, 2019   January 11, 2021 
##                  1                  2                  2                  1 
##   January 12, 2018   January 13, 2017   January 14, 2021   January 15, 2021 
##                  1                  1                  1                  4 
##   January 17, 2020   January 18, 2019   January 19, 2018   January 20, 2017 
##                  1                  3                  2                  1 
##   January 20, 2020   January 22, 2021   January 23, 2020   January 25, 2019 
##                  1                  1                  1                  1 
##   January 26, 2017   January 26, 2018   January 27, 2017   January 28, 2021 
##                  1                  1                  1                  1 
##   January 29, 2021   January 31, 2020    January 4, 2019    January 6, 2017 
##                  3                  1                  1                  1 
##    January 6, 2021    January 7, 2021    January 8, 2021       July 1, 2020 
##                  1                  1                  1                  1 
##      July 10, 2019      July 10, 2020      July 12, 2019      July 13, 2018 
##                  1                  2                  1                  1 
##      July 14, 2017      July 14, 2020      July 15, 2016      July 15, 2020 
##                  2                  1                  1                  1 
##      July 15. 2016      July 16, 2019      July 16, 2020      July 17, 2015 
##                  1                  1                  1                  1 
##      July 17, 2020      July 18, 2019      July 20, 2018      July 23, 2020 
##                  1                  1                  1                  1 
##      July 24, 2019      July 24, 2020      July 27, 2018      July 28, 2017 
##                  1                  2                  2                  1 
##      July 29, 2016      July 29, 2020       July 3, 2020      July 31, 2019 
##                  1                  1                  1                  1 
##      July 31, 2020       July 6, 2018       July 7, 2016       July 8, 2020 
##                  2                  1                  1                  1 
##      June 12, 2019      June 12, 2020      June 14, 2019      June 15, 2018 
##                  1                  1                  2                  2 
##      June 16, 2017      June 18, 2020      June 19, 2019      June 19, 2020 
##                  1                  2                  2                  4 
##      June 23, 2017      June 24, 2016      June 24, 2018      June 24, 2020 
##                  1                  1                  1                  3 
##      June 26, 2015      June 26, 2020      June 27, 2019      June 28, 2017 
##                  1                  1                  1                  1 
##      June 29, 2018       June 3, 2020       June 5, 2020       June 7, 2019 
##                  3                  1                  2                  2 
##       June 8, 2018       June 9, 2017      March 1, 2021     March 10, 2017 
##                  1                  1                  1                  1 
##     March 12, 2021     March 13, 2019     March 13, 2020     March 16, 2018 
##                  2                  1                  1                  2 
##     March 17, 2017     March 17, 2021     March 18, 2016     March 18, 2021 
##                  1                  1                  2                  1 
##     March 19, 2020     March 20, 2020     March 21, 2019     March 22, 2019 
##                  1                  2                  1                  2 
##     March 23, 2018     March 24, 2017     March 24, 2021     March 25, 2020 
##                  3                  1                  1                  2 
##     March 25, 2021     March 26, 2021     March 27, 2020     March 29, 2019 
##                  1                  3                  3                  3 
##      March 3, 2021     March 30, 2018     March 31, 2017      March 5, 2021 
##                  1                  2                  1                  1 
##      March 6, 2020      March 8, 2018      March 8, 2019      March 8, 2020 
##                  2                  1                  2                  1 
##      March 9, 2018        May 1, 2018        May 1, 2019        May 1, 2020 
##                  1                  1                  1                  3 
##       May 10, 2019       May 11, 2018       May 11, 2020       May 12, 2017 
##                  1                  1                  1                  1 
##       May 12, 2021       May 13, 2020       May 14, 2019       May 14, 2021 
##                  1                  1                  1                  3 
##       May 16, 2019       May 17, 2019       May 18, 2018       May 18, 2021 
##                  1                  2                  1                  1 
##       May 19, 2017       May 20, 2017       May 20, 2020       May 21, 2021 
##                  1                  1                  1                  1 
##       May 22, 2015       May 22, 2019       May 22, 2020       May 23, 2019 
##                  1                  1                  1                  1 
##       May 24, 2019       May 25, 2018       May 26, 2017       May 26, 2021 
##                  3                  1                  2                  3 
##       May 27, 2016       May 27, 2020       May 27, 2021       May 28, 2020 
##                  1                  1                  1                  1 
##       May 29, 2015        May 3, 2019       May 31, 2019        May 4, 2018 
##                  1                  2                  2                  2 
##        May 5, 2017        May 6, 2020        May 7, 2021   November 1, 2019 
##                  2                  1                  2                  5 
##  November 10, 2017  November 11, 2016  November 11, 2020  November 12, 2020 
##                  1                  1                  1                  1 
##  November 13, 2018  November 13, 2020  November 15, 2019  November 16, 2018 
##                  1                  2                  3                  3 
##  November 17, 2017  November 19, 2020   November 2, 2018  November 20, 2019 
##                  2                  1                  4                  2 
##  November 20, 2020  November 21, 2017  November 21, 2019  November 22, 2016 
##                  2                  1                  1                  1 
##  November 22, 2017  November 22, 2018  November 22, 2020  November 23, 2020 
##                  1                  1                  1                  1 
##  November 24, 2017  November 24, 2020  November 25, 2020  November 27, 2019 
##                  1                  2                  2                  2 
##  November 27, 2020  November 28, 2019   November 3, 2020  November 30, 2018 
##                  3                  1                  1                  3 
##  November 30, 2020   November 4, 2016   November 5, 2020   November 6, 2020 
##                  1                  1                  1                  1 
##   November 8, 2019   November 9, 2018    October 1, 2020   October 10, 2018 
##                  1                  1                  1                  1 
##   October 11, 2019   October 12, 2016   October 12, 2017   October 12, 2018 
##                  3                  1                  1                  3 
##   October 12, 2019   October 13, 2016   October 13, 2017   October 13, 2020 
##                  1                  1                  3                  1 
##   October 14, 2016   October 14, 2020   October 15, 2020   October 16, 2015 
##                  1                  2                  3                  1 
##   October 16, 2020   October 16. 2019   October 18, 2019   October 19, 2018 
##                  1                  1                  5                  2 
##    October 2, 2020   October 20, 2017   October 21, 2020   October 22, 2020 
##                  6                  3                  1                  1 
##   October 23, 2019   October 23, 2020   October 25, 2019   October 26, 2018 
##                  1                  1                  3                  2 
##   October 27, 2020   October 27. 2017   October 28, 2016   October 28, 2019 
##                  2                  1                  3                  2 
##   October 28, 2020   October 29, 2019   October 30, 2020    October 4, 2019 
##                  3                  1                  4                  1 
##    October 4, 2020    October 5, 2018    October 6, 2017    October 7, 2016 
##                  1                  1                  1                  2 
##    October 7, 2020    October 8, 2020    October 9, 2015    October 9, 2020 
##                  1                  1                  1                  2 
##  September 1, 2017 September 10, 2019 September 10, 2020 September 11, 2020 
##                  2                  1                  1                  1 
## September 12, 2017 September 12, 2018 September 13, 2016 September 13, 2018 
##                  1                  1                  1                  1 
## September 13, 2019 September 14, 2018 September 15, 2017 September 15, 2019 
##                  2                  2                  1                  1 
## September 15, 2020 September 15. 2017 September 16, 2016 September 16, 2020 
##                  1                  1                  1                  2 
## September 16. 2016 September 17, 2020 September 18, 2015 September 18, 2020 
##                  1                  1                  1                  2 
##  September 2, 2020 September 20, 2019 September 21, 2018 September 21, 2020 
##                  1                  1                  2                  1 
## September 22, 2017 September 23, 2016 September 25, 2019 September 27, 2019 
##                  1                  1                  1                  2 
## September 28, 2018 September 29, 2017  September 3, 2020 September 30, 2016 
##                  3                  3                  1                  1 
## September 30, 2020  September 4, 2020  September 7, 2018  September 7, 2020 
##                  3                  1                  3                  1 
##  September 8, 2017  September 9, 2020 
##                  1                  1
table(df$Language)
## 
##                    Bengali                      Dutch 
##                          1                          3 
##                    English               English/Akan 
##                        401                          1 
##             English/Arabic              English/Hindi 
##                          1                          2 
##           English/Japanese             English/Korean 
##                          2                          1 
##           English/Mandarin            English/Russian 
##                          2                          1 
##            English/Spanish            English/Swedish 
##                          5                          1 
## English/Taiwanese/Mandarin   English/Ukranian/Russian 
##                          1                          1 
##                   Filipino                     French 
##                          2                         20 
##                   Georgian                     German 
##                          1                          5 
##                      Hindi                 Indonesian 
##                         33                          9 
##                    Italian                   Japanese 
##                         14                          6 
##       Khmer/English/French                     Korean 
##                          1                          6 
##                      Malay                    Marathi 
##                          1                          3 
##                  Norwegian                     Polish 
##                          1                          3 
##                 Portuguese                    Spanish 
##                         12                         31 
##             Spanish/Basque            Spanish/Catalan 
##                          1                          1 
##            Spanish/English                    Swedish 
##                          1                          1 
##                      Tamil                       Thai 
##                          1                          2 
##               Thia/English                    Turkish 
##                          1                          5
table(df$Title)
## 
##                                                                                               #REALITYHIGH 
##                                                                                                          1 
##                                                                                                       13th 
##                                                                                                          1 
##                                                     13th: A Conversation with Oprah Winfrey & Ava DuVernay 
##                                                                                                          1 
##                                                                                                  15 August 
##                                                                                                          1 
##                                                                                                       1922 
##                                                                                                          1 
##                                                                                                    22 July 
##                                                                                                          1 
##                                                                                           5 Star Christmas 
##                                                                                                          1 
##                                                                                                 6 Balloons 
##                                                                                                          1 
##                                                                                              6 Underground 
##                                                                                                          1 
##                                                                                                     7 años 
##                                                                                                          1 
##                                                                                             A 3 Minute Hug 
##                                                                                                          1 
##                                                                    A Babysitter's Guide to Monster Hunting 
##                                                                                                          1 
##                                                                                     A California Christmas 
##                                                                                                          1 
##                                                                                         A Christmas Prince 
##                                                                                                          1 
##                                                                         A Christmas Prince: The Royal Baby 
##                                                                                                          1 
##                                                                      A Christmas Prince: The Royal Wedding 
##                                                                                                          1 
##                                                                                          A Fall from Grace 
##                                                                                                          1 
##                                                                                A Futile and Stupid Gesture 
##                                                                                                          1 
##                                                              A Life of Speed: The Juan Manuel Fangio Story 
##                                                                                                          1 
##                                                                                    A Love Song for Latasha 
##                                                                                                          1 
##                                                                                              A Secret Love 
##                                                                                                          1 
##                                                                                     A Tale of Two Kitchens 
##                                                                                                          1 
##                                                                                    A Very Murray Christmas 
##                                                                                                          1 
##                                                                                                A Week Away 
##                                                                                                          1 
##                                                                                             A Whisker Away 
##                                                                                                          1 
##                                                                                                After Maria 
##                                                                                                          1 
##                                                                                             After the Raid 
##                                                                                                          1 
##                                                                                              Airplane Mode 
##                                                                                                          1 
##                                                                                            Ajeeb Daastaans 
##                                                                                                          1 
##                                                                                                   AK vs AK 
##                                                                                                          1 
##                                                                                           Alex Strangelove 
##                                                                                                          1 
##                                                                                                 Alien Xmas 
##                                                                                                          1 
##                                                                                         All Because of You 
##                                                                                                          1 
##                                                                                        All Day and a Night 
##                                                                                                          1 
##                                                                                           All in My Family 
##                                                                                                          1 
##                                                                                      All the Bright Places 
##                                                                                                          1 
##                                                                                           All Together Now 
##                                                                                                          1 
##                                                                                  Altered Carbon: Resleeved 
##                                                                                                          1 
##                                                                                         Always Be My Maybe 
##                                                                                                          1 
##                                                                                                Amanda Knox 
##                                                                                                          1 
##                                                                                                    Amateur 
##                                                                                                          1 
##                                                                                           American Factory 
##                                                                                                          1 
##                                                          American Factory: A Conversation with the Obamas  
##                                                                                                          1 
##                                                                      American Murder: The Family Next Door 
##                                                                                                          1 
##                                                                                               American Son 
##                                                                                                          1 
##                                                                                      Anelka: Misunderstood 
##                                                                                                          1 
##                                                                                         Angela's Christmas 
##                                                                                                          1 
##                                                                                    Angela's Christmas Wish 
##                                                                                                          1 
##                                                                                                      Anima 
##                                                                                                          1 
##                                                                  Antoine Griezmann: The Making of a Legend 
##                                                                                                          1 
##                                                                                                    Apostle 
##                                                                                                          1 
##                                                                       Ariana Grande: Excuse Me, I Love You 
##                                                                                                          1 
##                                                                                     Arlo the Alligator Boy 
##                                                                                                          1 
##                                                                                           Army of the Dead 
##                                                                                                          1 
##                                                                                                        ARQ 
##                                                                                                          1 
##                                                                                                  Athlete A 
##                                                                                                          1 
##                                                                                             Audrie & Daisy 
##                                                                                                          1 
##                                                                                             Back to School 
##                                                                                                          1 
##                                                                                                   Bad Trip 
##                                                                                                          1 
##                                                                                Baggio: The Divine Ponytail 
##                                                                                                          1 
##                                                                Barbra: The Music, The Mem'ries, The Magic! 
##                                                                                                          1 
##                                                                                                      Barry 
##                                                                                                          1 
##                                                                                        Beasts of No Nation 
##                                                                                                          1 
##                                                                                                      Beats 
##                                                                                                          1 
##                                                                                                   Becoming 
##                                                                                                          1 
##                                                                                               Been So Long 
##                                                                                                          1 
##                                                                                                 Below Zero 
##                                                                                                          1 
##                                                                 Ben Platt: Live from Radio City Music Hall 
##                                                                                                          1 
##                                                                                                      Benji 
##                                                                                                          1 
##                                                                               Between Two Ferns: The Movie 
##                                                                                                          1 
##                                                                               Bigflo & Oil: Hip Hop Frenzy 
##                                                                                                          1 
##                                                                              Biggie: I Got a Story to Tell 
##                                                                                                          1 
##                                                                               Bikram: Yogi, Guru, Predator 
##                                                                                                          1 
##                                                                                                   Bird Box 
##                                                                                                          1 
##                                                                                                    Birders 
##                                                                                                          1 
##                                                                                Blackpink: Light Up the Sky 
##                                                                                                          1 
##                                                                                                     Blame! 
##                                                                                                          1 
##                                                                                               Blue Miracle 
##                                                                                                          1 
##                                                                                                Bomb Scared 
##                                                                                                          1 
##                                                                                              Brahman Naman 
##                                                                                                          1 
##                                                                           Brene Brown: The Call to Courage 
##                                                                                                          1 
##                                                                                                     Bright 
##                                                                                                          1 
##                                                                                                    Bulbbul 
##                                                                                                          1 
##                                                                                              Burning Sands 
##                                                                                                          1 
##                                                                                                    Cadaver 
##                                                                                                          1 
##                                                                                                    Calibre 
##                                                                                                          1 
##                                                                                                        Cam 
##                                                                                                          1 
##                                                                                                  Candy Jar 
##                                                                                                          1 
##                                                                                                    Canvas  
##                                                                                                          1 
##                                                                                                      Cargo 
##                                                                                                          1 
##                                                                                           Casting JonBenet 
##                                                                                                          1 
##                                                                                           Caught by a Wave 
##                                                                                                          1 
##                                                                    Chadwick Boseman: Portrait of an Artist 
##                                                                                                          1 
##                                                                                             Chasing Coral  
##                                                                                                          1 
##                                                                                    Choked: Paisa Bolta Hai 
##                                                                                                          1 
##                                                                                                 Chopsticks 
##                                                                                                          1 
##                                                                                        Christmas Crossfire 
##                                                                                                          1 
##                                                                                      Christmas Inheritance 
##                                                                                                          1 
##                                                                                            Circus of Books 
##                                                                                                          1 
##                                                                                                   Citation 
##                                                                                                          1 
##                                                                                                City of Joy 
##                                                                                                          1 
##                                                                                               Class of '83 
##                                                                                                          1 
##                                                                                                   Clinical 
##                                                                                                          1 
##                                                                                            Coffee & Kareem 
##                                                                                                          1 
##                                                                                                 Coin Heist 
##                                                                                                          1 
##                                                                                                Come Sunday 
##                                                                                                          1 
##                                                                                       Como Caído del Cielo 
##                                                                                                          1 
##                                                                                            Concrete Cowboy 
##                                                                                                          1 
##                                                                                           Cops and Robbers 
##                                                                                                          1 
##                                                                                              CounterPunch  
##                                                                                                          1 
##                                                                    Crack: Cocaine, Corruption & Conspiracy 
##                                                                                                          1 
##                                                                                            Crazy About Her 
##                                                                                                          1 
##                                                                                     Crazy Awesome Teachers 
##                                                                                                          1 
##                                                                         Crip Camp: A Disability Revolution 
##                                                                                                          1 
##                                                                                    Cuba and the Cameraman  
##                                                                                                          1 
##                                                                                                Da 5 Bloods 
##                                                                                                          1 
##                                                                                                 Dad Wanted 
##                                                                                                          1 
##                                                                     Dance Dreams: Hot Chocolate Nutcracker 
##                                                                                                          1 
##                                                                                     Dancing with the Birds 
##                                                                                                          1 
##                                                                                             Dangerous Lies 
##                                                                                                          1 
##                                                                                                Dark Forces 
##                                                                                                          1 
##                                                                   David Attenborough: A Life on Our Planet 
##                                                                                                          1 
##                                                                                                  Dead Kids 
##                                                                                                          1 
##                                                                                                 Death Note 
##                                                                                                          1 
##                                                                                              Death to 2020 
##                                                                                                          1 
##                                                                                 Deidra & Laney Rob a Train 
##                                                                                                          1 
##                                                                                    Derren Brown: Sacrifice 
##                                                                                                          1 
##                                                                                                 Desperados 
##                                                                                                          1 
##                                                                                         Despite Everything 
##                                                                                                          1 
##                                                                                       Dick Johnson Is Dead 
##                                                                                                          1 
##                                                                          Disclosure: Trans Lives on Screen 
##                                                                                                          1 
##                                                                                        Dolemite Is My Name 
##                                                                                                          1 
##                                                                      Dolly Kitty and Those Twinkling Stars 
##                                                                                                          1 
##                                                                     Dolly Parton's Christmas on the Square 
##                                                                                                          1 
##                                                                          Dolly Parton: A MusiCares Tribute 
##                                                                                                          1 
##                                                                                                 Double Dad 
##                                                                                                          1 
##                                                                                                      Drive 
##                                                                                                          1 
##                                                                                                       Dude 
##                                                                                                          1 
##                                                                                            Earth and Blood 
##                                                                                                          1 
##                                                                                            Earthquake Bird 
##                                                                                                          1 
##                                                                                        El Camino Christmas 
##                                                                                                          1 
##                                                                            El Camino: A Breaking Bad Movie 
##                                                                                                          1 
##                                                                                    El Pepe: A Supreme Life 
##                                                                                                          1 
##                                                                                                        Eli 
##                                                                                                          1 
##                                                                                            Elisa & Marcela 
##                                                                                                          1 
##                                                                  Emicida: AmarElo - It's All For Yesterday 
##                                                                                                          1 
##                                                                                                   End Game 
##                                                                                                          1 
##                                                                                            Enter the Anime 
##                                                                                                          1 
##                                                            Eurovision Song Contest: The Story of Fire Saga 
##                                                                                                          1 
##                                                                                                     Evelyn 
##                                                                                                          1 
##                                                                                                 Extinction 
##                                                                                                          1 
##                                                                                                 Extraction 
##                                                                                                          1 
##                                                                                                   Extremis 
##                                                                                                          1 
##                                                                                           Falling Inn Love 
##                                                                                                          1 
##                                                                                               Fatal Affair 
##                                                                                                          1 
##                                                                                         Father of the Year 
##                                                                                                          1 
##                                                                                         Father Soldier Son 
##                                                                                                          1 
##                                                                                                   Fearless 
##                                                                                                          1 
##                                                                                              Feel the Beat 
##                                                                                                          1 
##                                                                        Feminists: What Were They Thinking? 
##                                                                                                          1 
##                                                                                                      Ferry 
##                                                                                                          1 
##                                                                                             Finding 'Ohana 
##                                                                                                          1 
##                                                                                              Finding Agnes 
##                                                                                                          1 
##                                                                                           Fire in Paradise 
##                                                                                                          1 
##                                                                                                  Firebrand 
##                                                                                                          1 
##                                                                                                First Match 
##                                                                                                          1 
##                                                                                First They Killed My Father 
##                                                                                                          1 
##                                                                                       Forgive Us Our Debts 
##                                                                                                          1 
##                                                                                                  Fractured 
##                                                                                                          1 
##                                                             Frankenstein's Monster's Monster, Frankenstein 
##                                                                                                          1 
##                                                                                   Freaks: You're One of Us 
##                                                                                                          1 
##                                                               Fyre: The Greatest Party That Never Happened 
##                                                                                                          1 
##                                                                                        Gaga: Five Foot Two 
##                                                                                                          1 
##                                                                                            Game Over, Man! 
##                                                                                                          1 
##                                                                                                 Geez & Ann 
##                                                                                                          1 
##                                                                                              Gerald's Game 
##                                                                                                          1 
##                                                                                         Get Me Roger Stone 
##                                                                                                          1 
##                                                                                               Get the Goat 
##                                                                                                          1 
##                                                                                              Get the Grift 
##                                                                                                          1 
##                                                                                                  Ghost Lab 
##                                                                                                          1 
##                                                                                              Ghost Stories 
##                                                                                                          1 
##                                                                                       Ghosts of Sugar Land 
##                                                                                                          1 
##                                                                                        GIMS: On the Record 
##                                                                                                          1 
##                                                                                           Ginny Weds Sunny 
##                                                                                                          1 
##                                                                                           Girlfriend's Day 
##                                                                                                          1 
##                                                                                               Giving Voice 
##                                                                                                          1 
##                                                                                                   Good Sam 
##                                                                                                          1 
##                                                                                           Grass Is Greener 
##                                                                                                          1 
##                                                                        Guillermo Vilas: Settling the Score 
##                                                                                                          1 
##                                                                                                     Guilty 
##                                                                                                          1 
##                                                                             Gunjan Saxena: The Kargil Girl 
##                                                                                                          1 
##                                                                          Handsome: A Netflix Mystery Movie 
##                                                                                                          1 
##                                                                                          Happy Anniversary 
##                                                                                                          1 
##                                                               Have a Good Trip: Adventures in Psychedelics 
##                                                                                                          1 
##                                                                              Have You Ever Seen Fireflies? 
##                                                                                                          1 
##                                                                          Hello Privilege. It's Me, Chelsea 
##                                                                                                          1 
##                                                                                                 Heroin(e)  
##                                                                                                          1 
##                                                                                           High Flying Bird 
##                                                                                                          1 
##                                                                                            Hillbilly Elegy 
##                                                                                                          1 
##                                                                                                  His House 
##                                                                                                          1 
##                                                                                              Hold the Dark 
##                                                                                                          1 
##                                                                                                   Holidate 
##                                                                                                          1 
##                                                                                        Holiday in the Wild 
##                                                                                                          1 
##                                                                                               Holiday Rush 
##                                                                                                          1 
##                                                                             Homecoming: A Film by Beyonce  
##                                                                                                          1 
##                                                                         Hope Frozen: A Quest to Live Twice 
##                                                                                                          1 
##                                                                                                 Horse Girl 
##                                                                                                          1 
##                                                                                           Hot Girls Wanted 
##                                                                                                          1 
##                                                                                               House Arrest 
##                                                                                                          1 
##                                                                                                How It Ends 
##                                                                                                          1 
##                                                                                            Hubie Halloween 
##                                                                                                          1 
##                                                                                   I'll Sleep When I'm Dead 
##                                                                                                          1 
##                                                                                         I'm No Longer Here 
##                                                                                                          1 
##                                I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron 
##                                                                                                          1 
##                                                                              I'm Thinking of Ending Things 
##                                                                                                          1 
##                                                                                             I Am All Girls 
##                                                                                                          1 
##                                                                                       I Am Not an Easy Man 
##                                                                                                          1 
##                                                              I Am the Pretty Thing That Lives in the House 
##                                                                                                          1 
##                                                                 I Don't Feel at Home in This World Anymore 
##                                                                                                          1 
##                                                                                                      Ibiza 
##                                                                                                          1 
##                                                                                                       iBoy 
##                                                                                                          1 
##                                                                                                     Icarus 
##                                                                                                          1 
##                                                                             If Anything Happens I Love You 
##                                                                                                          1 
##                                                                                            Imperial Dreams 
##                                                                                                          1 
##                                                                                  In the Shadow of the Moon 
##                                                                                                          1 
##                                                                                          In the Tall Grass 
##                                                                                                          1 
##                                                                                           Into the Inferno 
##                                                                                                          1 
##                                                                                                  Intuition 
##                                                                                                          1 
##                                                                             Invader Zim: Enter the Florpus 
##                                                                                                          1 
##                                                                                                         IO 
##                                                                                                          1 
##                                                                                          Irreplaceable You 
##                                                                                                          1 
##                                                                                                 Isi & Ossi 
##                                                                                                          1 
##                                                                                         It Takes a Lunatic 
##                                                                                                          1 
## Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton  
##                                                                                                          1 
##                                                                         Jingle Jangle: A Christmas Journey 
##                                                                                                          1 
##                                                                      Joan Didion: The Center Will Not Hold 
##                                                                                                          1 
##                                                                        John Mulaney & the Sack Lunch Bunch 
##                                                                                                          1 
##                                                                          John Was Trying to Contact Aliens 
##                                                                                                          1 
##                                                                            Joshua: Teenager vs. Superpower 
##                                                                                                          1 
##                                                                                                    Juanita 
##                                                                                                          1 
##                                                                                                June & Kopi 
##                                                                                                          1 
##                                                                                     Just Another Christmas 
##                                                                                                          1 
##                                                                                               Just Say Yes 
##                                                                                                          1 
##                                                                     Justin Timberlake + The Tennessee Kids 
##                                                                                                          1 
##                                                                                                Kaali Khuhi 
##                                                                                                          1 
##                                                                        Keith Richards: Under the Influence 
##                                                                                                          1 
##                                                                        Kevin Hart's Guide to Black History 
##                                                                                                          1 
##                                                                                              Kingdom of Us 
##                                                                                                          1 
##                                                                                                      Klaus 
##                                                                                                          1 
##                                                                                       Knock Down the House 
##                                                                                                          1 
##                                                                                               LA Originals 
##                                                                                                          1 
##                                                                                               Ladies First 
##                                                                                                          1 
##                                                                                                  Laerte-se 
##                                                                                                          1 
##                                                                                               Layla Majnun 
##                                                                                                          1 
##                                                                                                Let It Snow 
##                                                                                                          1 
##                                                                                          Leyla Everlasting 
##                                                                                                          1 
##                                                                                          Life Overtakes Me 
##                                                                                                          1 
##                                                                                                Like Father 
##                                                                                                          1 
##                                                                                                  Lionheart 
##                                                                                                          1 
##                                                                                                Little Evil 
##                                                                                                          1 
##                                                                                           Little Miss Sumo 
##                                                                                                          1 
##                                                                                       Long Live Brij Mohan 
##                                                                                                          1 
##                                                                                                  Long Shot 
##                                                                                                          1 
##                                                                                 Lorena, Light-Footed Woman 
##                                                                                                          1 
##                                                                      Los Tigres del Norte at Folsom Prison 
##                                                                                                          1 
##                                                                                                Lost Bullet 
##                                                                                                          1 
##                                                                                                 Lost Girls 
##                                                                                                          1 
##                                                                      Loudon Wainwright III: Surviving Twin 
##                                                                                                          1 
##                                                                                 Love Like the Falling Rain 
##                                                                                                          1 
##                                                                                       Love per Square Foot 
##                                                                                                          1 
##                                                                                        Love Wedding Repeat 
##                                                                                                          1 
##                                                                                           Love, Guaranteed 
##                                                                                                          1 
##                                                                                                 Lovefucked 
##                                                                                                          1 
##                                                                                                       Ludo 
##                                                                                                          1 
##                                                                                               Lust Stories 
##                                                                                                          1 
##                                                                                   Ma Rainey's Black Bottom 
##                                                                                                          1 
##                                                       Ma Rainey's Black Bottom: A Legacy Brought to Screen 
##                                                                                                          1 
##                                                                                              Madame Claude 
##                                                                                                          1 
##                                                                                            Malcolm & Marie 
##                                                                                                          1 
##                                                                                                       Mank 
##                                                                                                          1 
##                                                                                             Marriage Story 
##                                                                                                          1 
##                                                                                                    Mascots 
##                                                                                                          1 
##                                                                                                      Maska 
##                                                                                                          1 
##                                                                                                 Mercury 13 
##                                                                                                          1 
##                                                                                                      Mercy 
##                                                                                                          1 
##                                                        Michael Bolton's Big, Sexy, Valentine's Day Special 
##                                                                                                          1 
##                                                                                                  Milestone 
##                                                                                                          1 
##                                                                                             Miss Americana 
##                                                                                                          1 
##                                                                                                    Monster 
##                                                                                                          1 
##                                                                               Mowgli: Legend of the Jungle 
##                                                                                                          1 
##                                                                                                      Moxie 
##                                                                                                          1 
##                                                                                         Mrs. Serial Killer 
##                                                                                                          1 
##                                                            Mucho Mucho Amor: The Legend of Walter Mercado  
##                                                                                                          1 
##                                                                                             Murder Mystery 
##                                                                                                          1 
##                                                                   Murder to Mercy: The Cyntoia Brown Story 
##                                                                                                          1 
##                                                                                              Music Teacher 
##                                                                                                          1 
##                                                                                                       Mute 
##                                                                                                          1 
##                                                                                  My Beautiful Broken Brain 
##                                                                                                          1 
##                                                                                         My Octopus Teacher 
##                                                                                                          1 
##                                                                                                 My Own Man 
##                                                                                                          1 
##                                                                                       Nail Bomber: Manhunt 
##                                                                                                          1 
##                                                                                                      Naked 
##                                                                                                          1 
##                                                                                         Nappily Ever After 
##                                                                                                          1 
##                                                                                          Night in Paradise 
##                                                                                                          1 
##                                                                                      Nobody Knows I'm Here 
##                                                                                                          1 
##                                                                         Nobody Sleeps in the Woods Tonight 
##                                                                                                          1 
##                                                                     Nobody Speak: Trials of the Free Press 
##                                                                                                          1 
##                                                                                           Notes for My Son 
##                                                                                                          1 
##                                                         Notes from Dunblane: Lesson from a School Shooting 
##                                                                                                          1 
##                                                                         Octonauts & the Caves of Sac Actun 
##                                                                                                          1 
##                                                                         Octonauts & the Great Barrier Reef 
##                                                                                                          1 
##                                                                                      Offering to the Storm 
##                                                                                                          1 
##                                                                                                       Okja 
##                                                                                                          1 
##                                                                                                    Òlòt?ré 
##                                                                                                          1 
##                                                                                                 On My Skin 
##                                                                                                          1 
##                                                                                        One-Way to Tomorrow 
##                                                                                                          1 
##                                                                                                  One of Us 
##                                                                                                          1 
##                                                                                                   One Take 
##                                                                                                          1 
##                                                                                   Operation Christmas Drop 
##                                                                                                          1 
##                                                    Operation Varsity Blues: The College Admissions Scandal 
##                                                                                                          1 
##                                                                                                  Otherhood 
##                                                                                                          1 
##                                                                                         Our Souls at Night 
##                                                                                                          1 
##                                                                                           Out of Many, One 
##                                                                                                          1 
##                                                                                                Outlaw King 
##                                                                                                          1 
##                                                                                           Outside the Wire 
##                                                                                                          1 
##                                                                                              Over the Moon 
##                                                                                                          1 
##                                                                                                     Oxygen 
##                                                                                                          1 
##                                                                                                  Paddleton 
##                                                                                                          1 
##                                                                                                   Pagglait 
##                                                                                                          1 
##                                                                                                Paper Lives 
##                                                                                                          1 
##                                                                                                    Paradox 
##                                                                                                          1 
##                                                                                   Parchis: The Documentary 
##                                                                                                          1 
##                                                                                                Paris Is Us 
##                                                                                                          1 
##                                                                                      Pee-wee's Big Holiday 
##                                                                                                          1 
##                                                                                                       Pele 
##                                                                                                          1 
##                                                                                   Period. End of Sentence. 
##                                                                                                          1 
##                                                                                          Pieces of a Woman 
##                                                                                                          1 
##                                                                                                Point Blank 
##                                                                                                          1 
##                                                                                                      Polar 
##                                                                                                          1 
##                                                           Porta dos Fundos: The First Temptation of Christ 
##                                                                                                          1 
##                                                                        Porta dos Fundos: The Last Hangover 
##                                                                                                          1 
##                                                                                                 Prime Time 
##                                                                                                          1 
##                                                                                               Private Life 
##                                                                                                          1 
##                                                                                              Project Power 
##                                                                                                          1 
##                                                                                                     Quincy 
##                                                                                                          1 
##                                                                                             Raat Akeli Hai 
##                                                                                                          1 
##                                                                                               Rajma Chawal 
##                                                                                                          1 
##                                                                                       Ram Dass, Going Home 
##                                                                                                          1 
##                                                                                                Rattlesnake 
##                                                                                                          1 
##                                                                                                    Rebecca 
##                                                                                                          1 
##                                                                                                    Rebirth 
##                                                                                                          1 
##                                                                                              Recovery Boys 
##                                                                                                          1 
##                                                                                                    Red Dot 
##                                                                                                          1 
##                                                                        ReMastered: Devil at the Crossroads 
##                                                                                                          1 
##                                                                        ReMastered: Massacre at the Stadium 
##                                                                                                          1 
##                                                                               ReMastered: The Lion's Share 
##                                                                                                          1 
##                                                                    ReMastered: The Miami Showband Massacre 
##                                                                                                          1 
##                                                                  ReMastered: The Two Killings of Sam Cooke 
##                                                                                                          1 
##                                                                 ReMastered: Tricky Dick & the Man in Black 
##                                                                                                          1 
##                                                                     ReMastered: Who Killed Jam Master Jay? 
##                                                                                                          1 
##                                                                          ReMastered: Who Shot the Sheriff? 
##                                                                                                          1 
##                                                                                                  Resurface 
##                                                                                                          1 
##                                                                                              Reversing Roe 
##                                                                                                          1 
##                                                                                               Rich in Love 
##                                                                                                          1 
##                                                                                                Ride or Die 
##                                                                                                          1 
##                                                                                           Rim of the World 
##                                                                                                          1 
##                                                                                                Rising High 
##                                                                                                          1 
##                                                                                             Rising Phoenix 
##                                                                                                          1 
##                                                                                               Road to Roma 
##                                                                                                          1 
##                                                                          Rocko's Modern Life: Static Cling 
##                                                                                                          1 
##                                                                                                Rodney King 
##                                                                                                          1 
##                                                                                                 Rogue City 
##                                                                                                          1 
##                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere 
##                                                                                                          1 
##                                                                                                       Roma 
##                                                                                                          1 
##                                                                                          Rooting for Roona 
##                                                                                                          1 
##                                                                                                Rose Island 
##                                                                                                          1 
##                                                                                            Roxanne Roxanne 
##                                                                                                          1 
##                                                                                                Sand Castle 
##                                                                                                          1 
##                                                                                               Sandy Wexler 
##                                                                                                          1 
##                                                                            Sarah Cooper: Everything's Fine 
##                                                                                                          1 
##                                                                                         Sardar Ka Grandson 
##                                                                                                          1 
##                                                                                          Saving Capitalism 
##                                                                                                          1 
##                                                                                       Searching for Sheela 
##                                                                                                          1 
##                                                                                                 Seaspiracy 
##                                                                                                          1 
##                                                                                           Secret Obsession 
##                                                                                                          1 
##                                                                                Secrets of the Saqqara Tomb 
##                                                                                                          1 
##                                                                                          See You Yesterday 
##                                                                                                          1 
##                                                                                              Seeing Allred 
##                                                                                                          1 
##                                                                                                 Sentinelle 
##                                                                                                          1 
##                                                                                                     Sergio 
##                                                                                                          1 
##                                                                                                Serious Men 
##                                                                                                          1 
##                                                                                           Seriously Single 
##                                                                                                          1 
##                                                                                                  Set It Up 
##                                                                                                          1 
##                                                                                                  Seventeen 
##                                                                                                          1 
##                                                                                                 Sextuplets 
##                                                                                                          1 
##                                                                                    Shawn Mendes: In Wonder 
##                                                                                                          1 
##                                                                              Shawn Mendes: Live in Concert 
##                                                                                                          1 
##                                                                                               Shimmer Lake 
##                                                                                                          1 
##                                                                                                   Shirkers 
##                                                                                                          1 
##                                                                                  Sierra Burgess Is a Loser 
##                                                                                                          1 
##                                                                                    Sitara: Let Girls Dream 
##                                                                                                          1 
##                                                                       Sky Ladder: The Art of Cai Guo-Qiang 
##                                                                                                          1 
##                                                                                               Small Crimes 
##                                                                                                          1 
##                                                                                                Sol Levante 
##                                                                                                          1 
##                                                                                              Someone Great 
##                                                                                                          1 
##                                                                                                  Sometimes 
##                                                                                                          1 
##                                                                                                       Soni 
##                                                                                                          1 
##                                                                                             Space Sweepers 
##                                                                                                          1 
##                                                                                     Special Correspondents 
##                                                                                                          1 
##                                                                                                   Spectral 
##                                                                                                          1 
##                                                                                         Spelling the Dream 
##                                                                                                          1 
##                                                                                       Spenser Confidential 
##                                                                                                          1 
##                                                                                    Springsteen on Broadway 
##                                                                                                          1 
##                                                                                               Squared Love 
##                                                                                                          1 
##                                                                                               Step Sisters 
##                                                                                                          1 
##                                                                        Still Laugh-In: The Stars Celebrate 
##                                                                                                          1 
##                                                                                                Street Flow 
##                                                                                                          1 
##                                                                                        Strip Down, Rise Up 
##                                                                                                          1 
##                                                                                              Strong Island 
##                                                                                                          1 
##                                                               Struggle: The Life and Lost Art of Szukaiski 
##                                                                                                          1 
##                                                                                                Stuck Apart 
##                                                                                                          1 
##                                                                    Sturgill Simpson Presents: Sound & Fury 
##                                                                                                          1 
##                                                                                                Take the 10 
##                                                                                                          1 
##                                                                                            Take Your Pills 
##                                                                                                          1 
##                                                                                                  Tall Girl 
##                                                                                                          1 
##                                                                                                   Tallulah 
##                                                                                                          1 
##                                                                                                        TAU 
##                                                                                                          1 
##                                                                      Taylor Swift: Reputation Stadium Tour 
##                                                                                                          1 
##                                                                                            Team Foxcatcher 
##                                                                                                          1 
##                                                                                           Tell Me Who I Am 
##                                                                                                          1 
##                                                                                       Tersanjung the Movie 
##                                                                                                          1 
##                                                                                    The 40-Year-Old Version 
##                                                                                                          1 
##                                                                                            The After Party 
##                                                                                                          1 
##                                                                                          The American Meme 
##                                                                                                          1 
##                                                                                                  The Angel 
##                                                                                                          1 
##                                                                                                    The App 
##                                                                                                          1 
##                                                                                             The Babysitter 
##                                                                                                          1 
##                                                                               The Babysitter: Killer Queen 
##                                                                                                          1 
##                                                                               The Ballad of Buster Scruggs 
##                                                                                                          1 
##                                                                                                  The Beast 
##                                                                                                          1 
##                                                                                                The Binding 
##                                                                                                          1 
##                                                                                        The Black Godfather 
##                                                                                                          1 
##                                                                                          The Bleeding Edge 
##                                                                                                          1 
##                                                                                       The Boys in the Band 
##                                                                                                          1 
##                                                                   The Boys in the Band: Something Personal 
##                                                                                                          1 
##                                                                                                   The Call 
##                                                                                                          1 
##                                                                                   The Christmas Chronicles 
##                                                                                                          1 
##                                                                         The Christmas Chronicles: Part Two 
##                                                                                                          1 
##                                                                                     The Claudia Kishi Club 
##                                                                                                          1 
##                                                                                           The Claus Family 
##                                                                                                          1 
##                                                                                    The Cloverfield Paradox 
##                                                                                                          1 
##                                                                                       The Crimes That Bind 
##                                                                                                          1 
##                                                                                        The Day of the Lord 
##                                                                                                          1 
##                                                                    The Death and Life of Marsha P. Johnson 
##                                                                                                          1 
##                                                                                                The Decline 
##                                                                                                          1 
##                                                                                     The Devil All the Time 
##                                                                                                          1 
##                                                                                                    The Dig 
##                                                                                                          1 
##                                                                                                   The Dirt 
##                                                                                                          1 
##                                                                                               The Disciple 
##                                                                                                          1 
##                                                                                              The Discovery 
##                                                                                                          1 
##                                                                                                The Do-Over 
##                                                                                                          1 
##                                                                                      The Edge of Democracy 
##                                                                                                          1 
##                                                                                         The Forest of Love 
##                                                                                                          1 
##                                                                                 The Fundamentals of Caring 
##                                                                                                          1 
##                                                                                      The Girl on the Train 
##                                                                                                          1 
##                                                                                             The Great Hack 
##                                                                                                          1 
##                                                                                             The Half of It 
##                                                                                                          1 
##                                                                                        The Heartbreak Club 
##                                                                                                          1 
##                                                                                             The Highwaymen 
##                                                                                                          1 
##                                                                                       The Holiday Calendar 
##                                                                                                          1 
##                                                                               The Incredible Jessica James 
##                                                                                                          1 
##                                                                                               The Irishman 
##                                                                                                          1 
##                                                                              The Irishman: In Conversation 
##                                                                                                          1 
##                                                                                             The Ivory Game 
##                                                                                                          1 
##                                                                                                 The Killer 
##                                                                                                          1 
##                                                                                                   The King 
##                                                                                                          1 
##                                                                                          The Kissing Booth 
##                                                                                                          1 
##                                                                                        The Kissing Booth 2 
##                                                                                                          1 
##                                                                                The Knight Before Christmas 
##                                                                                                          1 
##                                                                                  The Land of Steady Habits 
##                                                                                                          1 
##                                                                                     The Larva Island Movie 
##                                                                                                          1 
##                                                                            The Last Days of American Crime 
##                                                                                                          1 
##                                                                                             The Last Laugh 
##                                                                                                          1 
##                                                                                          The Last Paradiso 
##                                                                                                          1 
##                                                                                   The Last Thing He Wanted 
##                                                                                                          1 
##                                                                                             The Laundromat 
##                                                                                                          1 
##                                                                      The Legacy of a Whitetail Deer Hunter 
##                                                                                                          1 
##                                                                               The Legend of Cocaine Island 
##                                                                                                          1 
##                                                                                             The Life Ahead 
##                                                                                                          1 
##                                      The Lonely Island Presents: The Unauthorized Bash Brothers Experience 
##                                                                                                          1 
##                                                                                              The Lovebirds 
##                                                                                                          1 
##                                                                                             The Main Event 
##                                                                                                          1 
##                                                                                        The Mars Generation 
##                                                                                                          1 
##                                                                  The Meyerowitz Stories (New and Selected) 
##                                                                                                          1 
##                                                                                           The Midnight Sky 
##                                                                                                          1 
##                                                                               The Minimalists: Less Is Now 
##                                                                                                          1 
##                                                                      The Misadventures of Hedi and Cokeman 
##                                                                                                          1 
##                                                                   The Most Assassinated Woman in the World 
##                                                                                                          1 
##                                                                            The Most Hated Woman in America 
##                                                                                                          1 
##                                                                                     The Night Comes for Us 
##                                                                                                          1 
##                                                                                               The Occupant 
##                                                                                                          1 
##                                                                                              The Old Guard 
##                                                                                                          1 
##                                                                                             The Open House 
##                                                                                                          1 
##                                                           The Other One: The Long Strange Trip of Bob Weir 
##                                                                                                          1 
##                                                                                 The Other Side of the Wind 
##                                                                                                          1 
##                                                                                               The Outsider 
##                                                                                                          1 
##                                                                                                The Package 
##                                                                                                          1 
##                                                                                              The Paramedic 
##                                                                                                          1 
##                                                                                           The Perfect Date 
##                                                                                                          1 
##                                                                                             The Perfection 
##                                                                                                          1 
##                                                                                                The Players 
##                                                                                                          1 
##                                                                                             The Polka King 
##                                                                                                          1 
##                                                                                        The Princess Switch 
##                                                                                                          1 
##                                                                        The Princess Switch: Switched Again 
##                                                                                                          1 
##                                                                                                   The Prom 
##                                                                                                          1 
##                                                                                          The Rachel Divide 
##                                                                                                          1 
##                                                                                  The Red Sea Diving Resort 
##                                                                                                          1 
##                                                                                           The Ridiculous 6 
##                                                                                                          1 
##                                                                The Road to El Camino: A Breaking Bad Movie 
##                                                                                                          1 
##                                                                                    The Siege of Jadotville 
##                                                                                                          1 
##                                                                                              The Sleepover 
##                                                                                                          1 
##                                                                                         The Social Dilemma 
##                                                                                                          1 
##                                                                                           The Speed Cubers 
##                                                                                                          1 
##                                                                      The Three Deaths of Marisela Escobedo 
##                                                                                                          1 
##                                                                                                 The Trader 
##                                                                                                          1 
##                                                                                 The Trial of the Chicago 7 
##                                                                                                          1 
##                                                                                              The Two Popes 
##                                                                                                          1 
##                                                                                                The Week Of 
##                                                                                                          1 
##                                                                                          The White Helmets 
##                                                                                                          1 
##                                                                                            The White Tiger 
##                                                                                                          1 
##                                                                                            The Willoughbys 
##                                                                                                          1 
##                                                                                    The Woman in the Window 
##                                                                                                          1 
##                                                                                            The Wrong Missy 
##                                                                                                          1 
##                                                                              They'll Love Me When I'm Dead 
##                                                                                                          1 
##                                                                                        Things Heard & Seen 
##                                                                                                          1 
##                                                                                              Thunder Force 
##                                                                                                          1 
##                                                                                                        Tig 
##                                                                                                          1 
##                                                                                                  Tigertail 
##                                                                                                          1 
##                                                                                               Time to Hunt 
##                                                                                                          1 
##                                                                          To All the Boys I've Loved Before 
##                                                                                                          1 
##                                                                        To All the Boys: Always and Forever 
##                                                                                                          1 
##                                                                     To All the Boys: P.S. I Still Love You 
##                                                                                                          1 
##                                                                                           To Each, Her Own 
##                                                                                                          1 
##                                                                                                To the Bone 
##                                                                                                          1 
##                                                                                Tony Parker: The Final Shot 
##                                                                                                          1 
##                                                                           Tony Robbins: I Am Not Your Guru 
##                                                                                                          1 
##                                                                                                     Tramps 
##                                                                                                          1 
##                                                                           Travis Scott: Look Mom I Can Fly 
##                                                                                                          1 
##                                                                              Tribhanga – Tedhi Medhi Crazy 
##                                                                                                          1 
##                                                                                            Triple Frontier 
##                                                                                                          1 
##                                                                  True Memoirs of an International Assassin 
##                                                                                                          1 
##                                                                                             Two Catalonias 
##                                                                                                          1 
##                                                                                                     Ultras 
##                                                                                                          1 
##                                                                                                   Uncorked 
##                                                                                                          1 
##                                                                                     Under the Riccione Sun 
##                                                                                                          1 
##                                                                                              Unicorn Store 
##                                                                                                          1 
##                                                                                            Unknown Origins 
##                                                                                                          1 
##                                                                                                   Upstarts 
##                                                                                                          1 
##                                                                                     Vampires vs. the Bronx 
##                                                                                                          1 
##                                                                                             Velvet Buzzsaw 
##                                                                                                          1 
##                                                                                                    Voyuer  
##                                                                                                          1 
##                                                                                         Walk. Ride. Rodeo. 
##                                                                                                          1 
##                                                                                                War Machine 
##                                                                                                          1 
##                                                                                                 We Are One 
##                                                                                                          1 
##                                                                                           We Can Be Heroes 
##                                                                                                          1 
##                                                                                          What Did Jack Do? 
##                                                                                                          1 
##                                                                                  What Happened to Mr. Cha? 
##                                                                                                          1 
##                                                                                What Happened, Miss Simone? 
##                                                                                                          1 
##                                                                                             What We Wanted 
##                                                                                                          1 
##                                                                                What Would Sophia Loren Do? 
##                                                                                                          1 
##                                                                                                   Wheelman 
##                                                                                                          1 
##                                                                                          When We First Met 
##                                                                                                          1 
##                                                                                                    Whipped 
##                                                                                                          1 
##                                                                   Who Would You Take to a Deserted Island? 
##                                                                                                          1 
##                                                                                       Why Did You Kill Me? 
##                                                                                                          1 
##                                                                                                 Win It All 
##                                                                                                          1 
##                                                                                               Wine Country 
##                                                                                                          1 
##                                                                Winter on Fire: Ukraine's Fight for Freedom 
##                                                                                                          1 
##                                                                                                    Work It 
##                                                                                                          1 
##                                                                                                       XOXO 
##                                                                                                          1 
##                                                                                                 Yeh Ballet 
##                                                                                                          1 
##                                                                                                    Yes Day 
##                                                                                                          1 
##                                                                                            You've Got This 
##                                                                                                          1 
##                                                                                                      Zion  
##                                                                                                          1
View(df)
nrow(df)
## [1] 584
ncol(df)
## [1] 6
sum(is.na(df))
## [1] 0
df[is.na(df)]
## character(0)
df1=df
df1[is.na(df1)]=0
df1
##                                                                                                          Title
## 1                                                                                              Enter the Anime
## 2                                                                                                  Dark Forces
## 3                                                                                                      The App
## 4                                                                                               The Open House
## 5                                                                                                  Kaali Khuhi
## 6                                                                                                        Drive
## 7                                                                                            Leyla Everlasting
## 8                                                                              The Last Days of American Crime
## 9                                                                                                      Paradox
## 10                                                                                          Sardar Ka Grandson
## 11                                                                                        Searching for Sheela
## 12                                                                                                    The Call
## 13                                                                                                     Whipped
## 14                                                                                          All Because of You
## 15                                                                                                       Mercy
## 16                                                                                              After the Raid
## 17                                                                                               Ghost Stories
## 18                                                                                    The Last Thing He Wanted
## 19                                                                                   What Happened to Mr. Cha?
## 20                                                                                                  Death Note
## 21                                                                           Hello Privilege. It's Me, Chelsea
## 22                                                                                            Secret Obsession
## 23                                                                                                  Sextuplets
## 24                                                                                       The Girl on the Train
## 25                                                                                               Thunder Force
## 26                                                                                                Fatal Affair
## 27                                                                                                Just Say Yes
## 28                                                                                            Seriously Single
## 29                                                                       The Misadventures of Hedi and Cokeman
## 30                                                                                            5 Star Christmas
## 31                                                                                                 After Maria
## 32                                                               I Am the Pretty Thing That Lives in the House
## 33                                                                                                 Paris Is Us
## 34                                                            Porta dos Fundos: The First Temptation of Christ
## 35                                                                                                 Rattlesnake
## 36                                                                                                 The Players
## 37                                                                                                  We Are One
## 38                                                                                               Finding Agnes
## 39                                                                                                          IO
## 40                                                                                                  Sentinelle
## 41                                                                                                 Sol Levante
## 42                                                                                                 The Binding
## 43                                                                                            We Can Be Heroes
## 44                                                                                         Christmas Crossfire
## 45                                                                                                  Coin Heist
## 46                                                                                          Mrs. Serial Killer
## 47                                                                          Nobody Sleeps in the Woods Tonight
## 48                                                                                                 Take the 10
## 49                                                                                              The Main Event
## 50                                                                                            The Ridiculous 6
## 51                                                                                             Earth and Blood
## 52                                                                                                    Fearless
## 53                                                                                                Holiday Rush
## 54                                                                                         The Day of the Lord
## 55                                                                                               Airplane Mode
## 56                                                                                                 How It Ends
## 57                                                                                  Love Like the Falling Rain
## 58                                                                                                     Rebirth
## 59                                                                                                Squared Love
## 60                                                                                                     Cadaver
## 61                                                                                                    Clinical
## 62                                                                                             Coffee & Kareem
## 63                                                                                                        Dude
## 64                                                                                                  Geez & Ann
## 65                                                                                      The Larva Island Movie
## 66                                                                                                #REALITYHIGH
## 67                                                           American Factory: A Conversation with the Obamas 
## 68                                                                                                  Desperados
## 69                                                                      Dolly Parton's Christmas on the Square
## 70                                                                                          Father of the Year
## 71                                                                                                   Firebrand
## 72                                                                                                   Ghost Lab
## 73                                                                                            Girlfriend's Day
## 74                                                                           Handsome: A Netflix Mystery Movie
## 75                                                                                             Hubie Halloween
## 76                                                                                                       Ibiza
## 77                                                                                            Rim of the World
## 78                                                                                                Sandy Wexler
## 79                                                                                           See You Yesterday
## 80                                                                         Still Laugh-In: The Stars Celebrate
## 81                                                                                         Strip Down, Rise Up
## 82                                                                                                   Tall Girl
## 83                                                                                                   The Beast
## 84                                                                                                 The Week Of
## 85                                                                       A Christmas Prince: The Royal Wedding
## 86                                                                                              Back to School
## 87                                                                                              Dangerous Lies
## 88                                                                              Gunjan Saxena: The Kargil Girl
## 89                                                                                                   Intuition
## 90                                                                    The Most Assassinated Woman in the World
## 91                                                                                         Things Heard & Seen
## 92                                                                                            To Each, Her Own
## 93                                                                    Who Would You Take to a Deserted Island?
## 94                                                                                                        XOXO
## 95                                                                     A Babysitter's Guide to Monster Hunting
## 96                                                                          A Christmas Prince: The Royal Baby
## 97                                                                                          Despite Everything
## 98                                                                       Dolly Kitty and Those Twinkling Stars
## 99                                                                                    Freaks: You're One of Us
## 100                                                                                            Game Over, Man!
## 101                                                                                                     Guilty
## 102                                                                                          In the Tall Grass
## 103                                                                                              Madame Claude
## 104                                                                                                      Naked
## 105                                                                                           Outside the Wire
## 106                                                                        The Princess Switch: Switched Again
## 107                                                                                     Under the Riccione Sun
## 108                                                                                    A Very Murray Christmas
## 109                                                                                               Been So Long
## 110                                                                                                  Dead Kids
## 111                                                                                              Get the Grift
## 112                                                                                       Ghosts of Sugar Land
## 113                                                                                               House Arrest
## 114                                                                        Kevin Hart's Guide to Black History
## 115                                                                                        Love Wedding Repeat
## 116                                                                                                       Mute
## 117                                                                                                    Òlòt?ré
## 118                                                                                                    Red Dot
## 119                                                                                                Ride or Die
## 120                                                                                               Step Sisters
## 121                                                                                    The Cloverfield Paradox
## 122                                                                                The Knight Before Christmas
## 123                                                                      The Legacy of a Whitetail Deer Hunter
## 124                                                                                                The Package
## 125                                                                                              Unicorn Store
## 126                                                                                               Wine Country
## 127                                                                                                Bomb Scared
## 128                                                                                              Brahman Naman
## 129                                                                                                 Double Dad
## 130                                                                                           Falling Inn Love
## 131                                                                                              Hold the Dark
## 132                                                                                           Love, Guaranteed
## 133                                                                                        One-Way to Tomorrow
## 134                                                                            Sarah Cooper: Everything's Fine
## 135                                                                                             The Last Laugh
## 136                                                                                          The Last Paradiso
## 137                                                                                           The Midnight Sky
## 138                                                                                              The Paramedic
## 139                                                                                              The Sleepover
## 140                                                                                     Vampires vs. the Bronx
## 141                                                                                       Why Did You Kill Me?
## 142                                                                                                A Week Away
## 143                                                                                           Caught by a Wave
## 144                                                                                      Christmas Inheritance
## 145                                                                                                 Dad Wanted
## 146                                                                                        El Camino Christmas
## 147                                                                                                        Eli
## 148                                                                                           Ginny Weds Sunny
## 149                                                                                                   Good Sam
## 150                                                                                                  Lionheart
## 151                                                                                                Little Evil
## 152                                                                                                   One Take
## 153                                                                                           Out of Many, One
## 154                                                                                                Point Blank
## 155                                                                                                 Prime Time
## 156                                                                                                The Do-Over
## 157                                                                                       The Holiday Calendar
## 158                                                                                    The Woman in the Window
## 159                                                                                            The Wrong Missy
## 160                                                                                             Velvet Buzzsaw
## 161                                                                                                    Yes Day
## 162                                                                                                  15 August
## 163                                                                                     A California Christmas
## 164                                                                                         A Christmas Prince
## 165                                                                                        All Day and a Night
## 166                                                                                               American Son
## 167                                                                                                      Barry
## 168                                                                                                  Candy Jar
## 169                                                                                    Choked: Paisa Bolta Hai
## 170                                                                                               Class of '83
## 171                                                                                                 Extinction
## 172                                                                                          Happy Anniversary
## 173                                                                                             I Am All Girls
## 174                                                                                                Let It Snow
## 175                                                                                                    Mascots
## 176                                                                                   Operation Christmas Drop
## 177                                                                                               Rajma Chawal
## 178                                                                                               Rich in Love
## 179                                                                                                Rising High
## 180                                                                                                Rodney King
## 181                                                                                  Sierra Burgess Is a Loser
## 182                                                                                               Small Crimes
## 183                                                                                     Special Correspondents
## 184                                                                                                        TAU
## 185                                                                                            The After Party
## 186                                                                               The Babysitter: Killer Queen
## 187                                                                                           The Claus Family
## 188                                                                                        The Kissing Booth 2
## 189                                                                                           The Perfect Date
## 190                                                                                             What We Wanted
## 191                                                                                            You've Got This
## 192                                                                                                 6 Balloons
## 193                                                                                          A Fall from Grace
## 194                                                                                                    Amateur
## 195                                                                                           Army of the Dead
## 196                                                                                                        Cam
## 197                                                                                            Earthquake Bird
## 198                                                             Frankenstein's Monster's Monster, Frankenstein
## 199                                                                                                 Horse Girl
## 200                                                         Notes from Dunblane: Lesson from a School Shooting
## 201                                                                                                      Maska
## 202                                                                                                The Decline
## 203                                                                               The Minimalists: Less Is Now
## 204                                                                                             The Polka King
## 205                                                                                                   The Prom
## 206                                                                  True Memoirs of an International Assassin
## 207                                                                                                     Ultras
## 208                                                                                                Come Sunday
## 209                                                                                       Forgive Us Our Debts
## 210                                                                                                       iBoy
## 211                                                                                                 Lovefucked
## 212                                                                                                    Juanita
## 213                                                                                             Murder Mystery
## 214                                                                                              Project Power
## 215                                                                                                    Rebecca
## 216                                                                         The Christmas Chronicles: Part Two
## 217                                                                                          The Kissing Booth
## 218                                                                                        The Princess Switch
## 219                                                                     To All the Boys: P.S. I Still Love You
## 220                                                                                                War Machine
## 221                                                                                              6 Underground
## 222                                                                               Between Two Ferns: The Movie
## 223                                                                                              Burning Sands
## 224                                                                                           Casting JonBenet
## 225                                                                                 Deidra & Laney Rob a Train
## 226                                                                                             Finding 'Ohana
## 227                                                                                                   Holidate
## 228                                                                                        Holiday in the Wild
## 229                                                                                           Hot Girls Wanted
## 230                                                                                                Like Father
## 231                                                                                                 Lost Girls
## 232                                                                                                  Otherhood
## 233                                                                                      Pee-wee's Big Holiday
## 234                                                                                                 Rogue City
## 235                                                                                                     Sergio
## 236                                                                                                Stuck Apart
## 237                                                                                       Tersanjung the Movie
## 238                                                                                                 The Killer
## 239                                                                                              The Lovebirds
## 240                                                                            The Most Hated Woman in America
## 241                                                                                             The Perfection
## 242                                                                              Tribhanga – Tedhi Medhi Crazy
## 243                                                                                            Unknown Origins
## 244                                                                                                    Work It
## 245                                                                                                 Alien Xmas
## 246                                                                                Baggio: The Divine Ponytail
## 247                                                                                                 Below Zero
## 248                                                                                                   Citation
## 249                                                                                     Crazy Awesome Teachers
## 250                                                                              Have You Ever Seen Fireflies?
## 251                                                                                           High Flying Bird
## 252                                                                                  In the Shadow of the Moon
## 253                                                                                                Lost Bullet
## 254                                                                         Octonauts & the Caves of Sac Actun
## 255                                                                                      Offering to the Storm
## 256                                                                                            Roxanne Roxanne
## 257                                                                                              Someone Great
## 258                                                                                       Spenser Confidential
## 259                                                                                  The Land of Steady Habits
## 260                                                                                          The Rachel Divide
## 261                                                                                                    Voyuer 
## 262                                                                                                 Win It All
## 263                                                                                                       1922
## 264                                                                                     A Tale of Two Kitchens
## 265                                                                                           Alex Strangelove
## 266                                                                                                    Apostle
## 267                                                                                                      Benji
## 268                                                                                                     Bright
## 269                                                                                                      Cargo
## 270                                                                                            Concrete Cowboy
## 271                                                                                              Feel the Beat
## 272                                                                                               Get the Goat
## 273                                                                                       I Am Not an Easy Man
## 274                                                                                                June & Kopi
## 275                                                                                              Music Teacher
## 276                                                                                       Nail Bomber: Manhunt
## 277                                                                                           Notes for My Son
## 278                                                                                                      Polar
## 279                                                                        Porta dos Fundos: The Last Hangover
## 280                                                                                                Sand Castle
## 281                                                                                               Shimmer Lake
## 282                                                                                                   Spectral
## 283                                                                                             The Babysitter
## 284                                                                                              The Discovery
## 285                                                                                         The Forest of Love
## 286                                                                                             The Laundromat
## 287                                                                               The Legend of Cocaine Island
## 288                                                                                               The Outsider
## 289                                                                                               Time to Hunt
## 290                                                                        To All the Boys: Always and Forever
## 291                                                                           Travis Scott: Look Mom I Can Fly
## 292                                                                                                   Uncorked
## 293                                                                                      Anelka: Misunderstood
## 294                                                                       Ariana Grande: Excuse Me, I Love You
## 295                                                                                                        ARQ
## 296                                                                                                    Birders
## 297                                                                                       Como Caído del Cielo
## 298                                                                                                First Match
## 299                                                                                                  Fractured
## 300                                                                                          Irreplaceable You
## 301                                                                                                 Isi & Ossi
## 302                                                                          John Was Trying to Contact Aliens
## 303                                                                                               Layla Majnun
## 304                                                                   Murder to Mercy: The Cyntoia Brown Story
## 305                                                                                                 My Own Man
## 306                                                                                         Nappily Ever After
## 307                                                                                              Over the Moon
## 308                                                                                                Street Flow
## 309                                                                                              Strong Island
## 310                                                                    Sturgill Simpson Presents: Sound & Fury
## 311                                                                                            Take Your Pills
## 312                                                                                        The Heartbreak Club
## 313                                                                                        The Mars Generation
## 314                                                                                               The Occupant
## 315                                                                                            The Willoughbys
## 316                                                                                            Triple Frontier
## 317                                                                                             Two Catalonias
## 318                                                                                         Walk. Ride. Rodeo.
## 319                                                                                                   Wheelman
## 320                                                                                          When We First Met
## 321                                                                                             A 3 Minute Hug
## 322                                                                                      All the Bright Places
## 323                                                                                           All Together Now
## 324                                                                                  Altered Carbon: Resleeved
## 325                                                                  Antoine Griezmann: The Making of a Legend
## 326                                                                                                    Canvas 
## 327                                                                    Chadwick Boseman: Portrait of an Artist
## 328                                                                                                 Chopsticks
## 329                                                                                                Da 5 Bloods
## 330                                                                          Dolly Parton: A MusiCares Tribute
## 331                                                            Eurovision Song Contest: The Story of Fire Saga
## 332                                                                                              Gerald's Game
## 333                                                                                                  His House
## 334                                                                         Jingle Jangle: A Christmas Journey
## 335                                                                                          Life Overtakes Me
## 336                                                                                               Lust Stories
## 337                                                                                                    Monster
## 338                                                                               Mowgli: Legend of the Jungle
## 339                                                                                      Nobody Knows I'm Here
## 340                                                                     Nobody Speak: Trials of the Free Press
## 341                                                                                                     Oxygen
## 342                                                                                                  Set It Up
## 343                                                                               The Incredible Jessica James
## 344                                                                                                  Tigertail
## 345                                                                                                     Tramps
## 346                                                                                          What Did Jack Do?
## 347                                                                                                   Bad Trip
## 348                                                                                                   Bird Box
## 349                                                                                                    Bulbbul
## 350                                                                                            Crazy About Her
## 351                                                                                            Elisa & Marcela
## 352                                                                                   I'll Sleep When I'm Dead
## 353                                                                              I'm Thinking of Ending Things
## 354                                                                                         It Takes a Lunatic
## 355                                                                                                  Milestone
## 356                                                                                              Recovery Boys
## 357                                                                     ReMastered: Who Killed Jam Master Jay?
## 358                                                                                    Shawn Mendes: In Wonder
## 359                                                                                             Space Sweepers
## 360                                                                                          The American Meme
## 361                                                                                                  The Angel
## 362                                                                                       The Crimes That Bind
## 363                                                                                  The Red Sea Diving Resort
## 364                                                                                What Would Sophia Loren Do?
## 365                                                                                             A Whisker Away
## 366                                                                                            Ajeeb Daastaans
## 367                                                                                     Arlo the Alligator Boy
## 368                                                                               Bikram: Yogi, Guru, Predator
## 369                                                                                                     Blame!
## 370                                                                                               Blue Miracle
## 371                                                                                              CounterPunch 
## 372                                                                    Crack: Cocaine, Corruption & Conspiracy
## 373                                                                                                 Extraction
## 374                                                                                               Giving Voice
## 375                                                                                            Hillbilly Elegy
## 376                                                                         Hope Frozen: A Quest to Live Twice
## 377                                                                                            Imperial Dreams
## 378                                                                                     Just Another Christmas
## 379                                                                                           Little Miss Sumo
## 380                                                                                            Malcolm & Marie
## 381                                                        Michael Bolton's Big, Sexy, Valentine's Day Special
## 382                                                                                                      Moxie
## 383                                                                                          Night in Paradise
## 384                                                                                                Paper Lives
## 385                                                                                   Parchis: The Documentary
## 386                                                                                                   Tallulah
## 387                                                                                              The Old Guard
## 388                                                                           Tony Robbins: I Am Not Your Guru
## 389                                                                                                   Upstarts
## 390                                                                                                    22 July
## 391                                                                                                     7 años
## 392                                                                                A Futile and Stupid Gesture
## 393                                                              A Life of Speed: The Juan Manuel Fangio Story
## 394                                                                                    A Love Song for Latasha
## 395                                                                                           All in My Family
## 396                                                                                         Always Be My Maybe
## 397                                                                                                   Becoming
## 398                                                                                       Long Live Brij Mohan
## 399                                                                                                    Calibre
## 400                                                                                              Death to 2020
## 401                                                                                        GIMS: On the Record
## 402                                                               Have a Good Trip: Adventures in Psychedelics
## 403                                                                                                 Heroin(e) 
## 404                                                                                                 Mercury 13
## 405                                                                                          Saving Capitalism
## 406                                                                                                Serious Men
## 407                                                                                       The Boys in the Band
## 408                                                                   The Boys in the Band: Something Personal
## 409                                                                                             The Life Ahead
## 410                                                                                 The Other Side of the Wind
## 411                                                                                                 The Trader
## 412                                                                                                To the Bone
## 413                                                                                Tony Parker: The Final Shot
## 414                                                                                                   AK vs AK
## 415                                                                                                Amanda Knox
## 416                                                                               Bigflo & Oil: Hip Hop Frenzy
## 417                                                                              Biggie: I Got a Story to Tell
## 418                                                                                           Cops and Robbers
## 419                                                                 I Don't Feel at Home in This World Anymore
## 420                                                                                                  Laerte-se
## 421                                                                                                       Mank
## 422                                                                                         Our Souls at Night
## 423                                                                                                Outlaw King
## 424                                                                                                   Pagglait
## 425                                                                          ReMastered: Who Shot the Sheriff?
## 426                                                                                              Seeing Allred
## 427                                                                                         Spelling the Dream
## 428                                                                                     The Claudia Kishi Club
## 429                                                                                             The Half of It
## 430                                                                                             The Highwaymen
## 431                                      The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 432                                                                  The Meyerowitz Stories (New and Selected)
## 433                                                                        Feminists: What Were They Thinking?
## 434                                                                                        Gaga: Five Foot Two
## 435                                I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 436                                                                                              Kingdom of Us
## 437                                                                                 Lorena, Light-Footed Woman
## 438                                                                      Los Tigres del Norte at Folsom Prison
## 439                                                                                   Ma Rainey's Black Bottom
## 440                                                       Ma Rainey's Black Bottom: A Legacy Brought to Screen
## 441                                                    Operation Varsity Blues: The College Admissions Scandal
## 442                                                                                                       Pele
## 443                                                                        ReMastered: Devil at the Crossroads
## 444                                                                               ReMastered: The Lion's Share
## 445                                                                    ReMastered: The Miami Showband Massacre
## 446                                                                                                  Resurface
## 447                                                                          Rocko's Modern Life: Static Cling
## 448                                                                                                Rose Island
## 449                                                                                   The Christmas Chronicles
## 450                                                                                                   The Dirt
## 451                                                                                     The Night Comes for Us
## 452                                                     13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 453                                                                                         Angela's Christmas
## 454                                                                                    Angela's Christmas Wish
## 455                                                                                                      Beats
## 456                                                                                            Circus of Books
## 457                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 458                                                                                    Derren Brown: Sacrifice
## 459                                                                                    El Pepe: A Supreme Life
## 460                                                                                                   End Game
## 461                                                                                                     Evelyn
## 462                                                                                                      Ferry
## 463                                                                                           Grass Is Greener
## 464                                                                        Guillermo Vilas: Settling the Score
## 465                                                                            Joshua: Teenager vs. Superpower
## 466                                                                        Keith Richards: Under the Influence
## 467                                                                                       Knock Down the House
## 468                                                                      Loudon Wainwright III: Surviving Twin
## 469                                                                                  My Beautiful Broken Brain
## 470                                                                                                  One of Us
## 471                                                                                          Pieces of a Woman
## 472                                                                                       Ram Dass, Going Home
## 473                                                                 ReMastered: Tricky Dick & the Man in Black
## 474                                                                                          Rooting for Roona
## 475                                                                                     The Devil All the Time
## 476                                                                                                    The Dig
## 477                                                                                             The Great Hack
## 478                                                                                            The White Tiger
## 479                                                                          To All the Boys I've Loved Before
## 480                                                                      American Murder: The Family Next Door
## 481                                                                                             Audrie & Daisy
## 482                                                                                First They Killed My Father
## 483                                                               Fyre: The Greatest Party That Never Happened
## 484                                                                                           Into the Inferno
## 485                                                                                               LA Originals
## 486                                                                                               Ladies First
## 487                                                                                       Love per Square Foot
## 488                                                                                                  Paddleton
## 489                                                                                               Private Life
## 490                                                                                                  Seventeen
## 491                                                                                                  Sometimes
## 492                                                                                                       Soni
## 493                                                                                    The 40-Year-Old Version
## 494                                                                                               The Disciple
## 495                                                                                      The Edge of Democracy
## 496                                                                                                   The King
## 497                                                                The Road to El Camino: A Breaking Bad Movie
## 498                                                                                    The Siege of Jadotville
## 499                                                                                                      Zion 
## 500                                                                                        Dolemite Is My Name
## 501                                                                            El Camino: A Breaking Bad Movie
## 502                                                                                                   Extremis
## 503                                                                                         Father Soldier Son
## 504                                                                                         Get Me Roger Stone
## 505                                                                                         I'm No Longer Here
## 506                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 507                                                                         Octonauts & the Great Barrier Reef
## 508                                                                                                       Okja
## 509                                                                                                 On My Skin
## 510                                                                                             Raat Akeli Hai
## 511                                                                        ReMastered: Massacre at the Stadium
## 512                                                                  ReMastered: The Two Killings of Sam Cooke
## 513                                                                                Secrets of the Saqqara Tomb
## 514                                                                                    Sitara: Let Girls Dream
## 515                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 516                                                                                            Team Foxcatcher
## 517                                                                               The Ballad of Buster Scruggs
## 518                                                                    The Death and Life of Marsha P. Johnson
## 519                                                                                 The Fundamentals of Caring
## 520                                                           The Other One: The Long Strange Trip of Bob Weir
## 521                                                                                           American Factory
## 522                                                                                           Fire in Paradise
## 523                                                                                                  Long Shot
## 524                                                                                             Miss Americana
## 525                                                                                   Period. End of Sentence.
## 526                                                                              Shawn Mendes: Live in Concert
## 527                                                                                                   Shirkers
## 528                                                                                        The Black Godfather
## 529                                                                              The Irishman: In Conversation
## 530                                                                                           The Speed Cubers
## 531                                                                              They'll Love Me When I'm Dead
## 532                                                                                                        Tig
## 533                                                                Barbra: The Music, The Mem'ries, The Magic!
## 534                                                                                Blackpink: Light Up the Sky
## 535                                                                                                City of Joy
## 536                                                                                       Dick Johnson Is Dead
## 537                                                                             Homecoming: A Film by Beyonce 
## 538                                                                             Invader Zim: Enter the Florpus
## 539                                                                      Joan Didion: The Center Will Not Hold
## 540                                                                        John Mulaney & the Sack Lunch Bunch
## 541                                                                                              Reversing Roe
## 542                                                                                          The White Helmets
## 543                                                                                                  Athlete A
## 544                                                                                                       Ludo
## 545                                                                                                     Quincy
## 546                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 547                                                                                           Tell Me Who I Am
## 548                                                                                          The Bleeding Edge
## 549                                                                                         The Social Dilemma
## 550                                                                                              The Two Popes
## 551                                                                                What Happened, Miss Simone?
## 552                                                                                                 Yeh Ballet
## 553                                                                                                      Anima
## 554                                                                                        Beasts of No Nation
## 555                                                                           Brene Brown: The Call to Courage
## 556                                                                         Crip Camp: A Disability Revolution
## 557 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 558                                                                     Justin Timberlake + The Tennessee Kids
## 559                                                                                               Road to Roma
## 560                                                                                                       Roma
## 561                                                                             If Anything Happens I Love You
## 562                                                                                               The Irishman
## 563                                                                                 The Trial of the Chicago 7
## 564                                                                                              A Secret Love
## 565                                                                                                     Icarus
## 566                                                                                             Marriage Story
## 567                                                                                             The Ivory Game
## 568                                                               Struggle: The Life and Lost Art of Szukaiski
## 569                                                                                             Chasing Coral 
## 570                                                                                         My Octopus Teacher
## 571                                                                                             Rising Phoenix
## 572                                                                                                       13th
## 573                                                                          Disclosure: Trans Lives on Screen
## 574                                                                                                      Klaus
## 575                                                                                                 Seaspiracy
## 576                                                                      The Three Deaths of Marisela Escobedo
## 577                                                                                    Cuba and the Cameraman 
## 578                                                                                     Dancing with the Birds
## 579                                                                 Ben Platt: Live from Radio City Music Hall
## 580                                                                      Taylor Swift: Reputation Stadium Tour
## 581                                                                Winter on Fire: Ukraine's Fight for Freedom
## 582                                                                                    Springsteen on Broadway
## 583                                                                  Emicida: AmarElo - It's All For Yesterday
## 584                                                                   David Attenborough: A Life on Our Planet
##                                    Genre           Premiere Runtime IMDB.Score
## 1                            Documentary     August 5, 2019      58        2.5
## 2                               Thriller    August 21, 2020      81        2.6
## 3                  Science fiction/Drama  December 26, 2019      79        2.6
## 4                        Horror thriller   January 19, 2018      94        3.2
## 5                                Mystery   October 30, 2020      90        3.4
## 6                                 Action   November 1, 2019     147        3.5
## 7                                 Comedy   December 4, 2020     112        3.7
## 8                    Heist film/Thriller       June 5, 2020     149        3.7
## 9                Musical/Western/Fantasy     March 23, 2018      73        3.9
## 10                                Comedy       May 18, 2021     139        4.1
## 11                           Documentary     April 22, 2021      58        4.1
## 12                                 Drama  November 27, 2020     112        4.1
## 13                       Romantic comedy September 18, 2020      97        4.1
## 14                         Action comedy    October 1, 2020     101        4.2
## 15                              Thriller  November 22, 2016      90        4.2
## 16                           Documentary  December 19, 2019      25        4.3
## 17                      Horror anthology    January 1, 2020     144        4.3
## 18                    Political thriller  February 21, 2020     115        4.3
## 19                                Comedy    January 1, 2021     102        4.3
## 20                       Horror thriller    August 25, 2017     100        4.4
## 21                           Documentary September 13, 2019      64        4.4
## 22                              Thriller      July 18, 2019      97        4.4
## 23                                Comedy    August 16, 2019      99        4.4
## 24                              Thriller  February 26, 2021     120        4.4
## 25                      Superhero-Comedy      April 9, 2021     105        4.4
## 26                              Thriller      July 16, 2020      89        4.5
## 27                       Romantic comedy      April 2, 2021      97        4.5
## 28                                Comedy      July 31, 2020     107        4.5
## 29                                Comedy  February 10, 2021      99        4.5
## 30                                Comedy   December 7, 2018      95        4.6
## 31                           Documentary       May 24, 2019      37        4.6
## 32                                Horror   October 28, 2016      89        4.6
## 33                         Romance drama  February 22, 2019      83        4.6
## 34                                Comedy   December 3, 2019      46        4.6
## 35                                Horror   October 25, 2019      85        4.6
## 36                                Comedy      July 15, 2020      88        4.6
## 37                           Documentary      July 14, 2020      86        4.6
## 38                                 Drama  November 30, 2020     105        4.7
## 39                 Science fiction/Drama   January 18, 2019      95        4.7
## 40                                Action      March 5, 2021      80        4.7
## 41                         Anime / Short      April 2, 2020       4        4.7
## 42                                 Drama    October 2, 2020      93        4.7
## 43                             Superhero  December 25, 2020     100        4.7
## 44                              Thriller   December 4, 2020     106        4.8
## 45                                 Heist    January 6, 2017      97        4.8
## 46                              Thriller        May 1, 2020     106        4.8
## 47                                Horror   October 28, 2020     103        4.8
## 48                                Comedy   January 20, 2017      80        4.8
## 49                                Comedy     April 10, 2020     101        4.8
## 50                               Western  December 11, 2015     119        4.8
## 51                                Action     April 17, 2020      80        4.9
## 52                   Animation/Superhero    August 14, 2020      89        4.9
## 53                           Family film  November 28, 2019      94        4.9
## 54                                 Drama   October 30, 2020      93        4.9
## 55                                Comedy   January 23, 2020      96        5.0
## 56                       Action-thriller      July 13, 2018     113        5.0
## 57                                 Drama   October 15, 2020      86        5.0
## 58                              Thriller      July 15, 2016     100        5.0
## 59                       Romantic comedy  February 11, 2021     102        5.0
## 60                                Horror   October 22, 2020      86        5.1
## 61                              Thriller   January 13, 2017     104        5.1
## 62                         Action comedy      April 3, 2020      88        5.1
## 63                     Teen comedy-drama     April 20, 2018      97        5.1
## 64                        Romantic drama  February 25, 2021     105        5.1
## 65                             Animation      July 23, 2020      90        5.1
## 66                                Comedy  September 8, 2017      99        5.2
## 67                 Aftershow / Interview    August 21, 2019      10        5.2
## 68                       Romantic comedy       July 3, 2020     106        5.2
## 69                     Christmas musical  November 22, 2020      98        5.2
## 70                                Comedy      July 20, 2018      94        5.2
## 71                                 Drama  February 22, 2019     112        5.2
## 72                                Horror       May 26, 2021     117        5.2
## 73                                Comedy  February 14, 2017      70        5.2
## 74                                Comedy        May 5, 2017      81        5.2
## 75                                Comedy    October 7, 2020     103        5.2
## 76                                Comedy       May 25, 2018      94        5.2
## 77             Science fiction adventure       May 24, 2019      98        5.2
## 78                                Comedy     April 14, 2017     131        5.2
## 79                       Science fiction       May 17, 2019      87        5.2
## 80                          Variety show       May 14, 2019      60        5.2
## 81                           Documentary   February 5, 2021     112        5.2
## 82                          Comedy-drama September 13, 2019     102        5.2
## 83                                 Drama  November 27, 2020      99        5.2
## 84                                Comedy     April 27, 2018     116        5.2
## 85                       Romantic comedy  November 30, 2018      92        5.3
## 86                                Comedy    August 30, 2019      83        5.3
## 87                              Thriller     April 30, 2020      97        5.3
## 88                                 Drama    August 12, 2020     112        5.3
## 89                              Thriller       May 28, 2020     116        5.3
## 90                              Thriller  September 7, 2018     102        5.3
## 91                                Horror     April 29, 2021     121        5.3
## 92                       Romantic comedy      June 24, 2018      95        5.3
## 93                                 Drama     April 12, 2019      93        5.3
## 94                                 Drama    August 26, 2016      92        5.3
## 95                 Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 96                       Romantic comedy   December 5, 2019      85        5.4
## 97                                Comedy        May 3, 2019      78        5.4
## 98                                 Drama September 18, 2020     120        5.4
## 99                    Supernatural drama  September 2, 2020      92        5.4
## 100                        Action/Comedy     March 23, 2018     101        5.4
## 101                             Thriller      March 6, 2020     119        5.4
## 102                               Horror    October 4, 2019     101        5.4
## 103                                Drama      April 2, 2021     112        5.4
## 104                               Comedy    August 11, 2017      96        5.4
## 105               Action/Science fiction   January 15, 2021     114        5.4
## 106                      Romantic comedy  November 19, 2020      97        5.4
## 107               Romantic teenage drama       July 1, 2020     101        5.4
## 108                     Comedy / Musical   December 4, 2015      56        5.5
## 109                              Musical   October 26, 2018     100        5.5
## 110                             Thriller   December 1, 2019      94        5.5
## 111                               Comedy     April 28, 2021      94        5.5
## 112                          Documentary   October 16. 2019      21        5.5
## 113                               Comedy  November 15, 2019     104        5.5
## 114                         Variety show   February 8, 2019      63        5.5
## 115                      Romantic comedy     April 10, 2020     100        5.5
## 116              Science fiction/Mystery  February 23, 2018     126        5.5
## 117                          Crime drama    October 2, 2020     106        5.5
## 118                             Thriller  February 11, 2021      86        5.5
## 119         Psychological thriller drama     April 15, 2021     142        5.5
## 120                               Comedy   January 19, 2018     108        5.5
## 121                      Science fiction   February 4, 2018     102        5.5
## 122                      Romantic comedy  November 21, 2019      92        5.5
## 123                     Adventure/Comedy       July 6, 2018      83        5.5
## 124                         Black comedy    August 10, 2018      94        5.5
## 125                               Comedy      April 5, 2019      92        5.5
## 126                               Comedy       May 10, 2019     103        5.5
## 127                         Black comedy   October 12, 2017      89        5.6
## 128                               Comedy       July 7, 2016      95        5.6
## 129                         Comedy-drama   January 15, 2021     103        5.6
## 130                      Romantic comedy    August 29, 2019      97        5.6
## 131                             Thriller September 28, 2018     125        5.6
## 132                      Romantic comedy  September 3, 2020      91        5.6
## 133                              Romance      June 19, 2020      90        5.6
## 134                         Variety show   October 27, 2020      49        5.6
## 135                         Comedy-drama   January 11, 2019      98        5.6
## 136                       Romantic drama   February 5, 2021     107        5.6
## 137                      Science fiction  December 23, 2020     118        5.6
## 138                             Thriller September 16, 2020      94        5.6
## 139                               Comedy    August 21, 2020     103        5.6
## 140                        Horror comedy    October 2, 2020      86        5.6
## 141                          Documentary     April 14, 2021      83        5.6
## 142                    Christian musical     March 26, 2021      97        5.7
## 143                  Romantic teen drama     March 25, 2021      99        5.7
## 144                       Romantic drama  December 15, 2017     104        5.7
## 145                               Family September 11, 2020     102        5.7
## 146                          Dark comedy   December 8, 2017      89        5.7
## 147                               Horror   October 18, 2019      98        5.7
## 148                      Romantic comedy    October 9, 2020     125        5.7
## 149                                Drama       May 16, 2019      89        5.7
## 150                               Comedy    January 4, 2019      94        5.7
## 151                        Comedy horror  September 1, 2017      94        5.7
## 152                          Documentary      June 18, 2020      85        5.7
## 153                          Documentary  December 12, 2018      34        5.7
## 154                               Action      July 12, 2019      86        5.7
## 155                             Thriller     April 14, 2021      91        5.7
## 156                        Action comedy       May 27, 2016     108        5.7
## 157                      Romantic comedy   November 2, 2018      95        5.7
## 158               Psychological thriller       May 14, 2021     100        5.7
## 159                               Comedy       May 13, 2020      90        5.7
## 160                             Thriller   February 1, 2019     112        5.7
## 161                               Comedy     March 12, 2021      86        5.7
## 162                         Comedy-drama     March 29, 2019     124        5.8
## 163                      Romantic comedy  December 14, 2020     107        5.8
## 164                      Romantic comedy  November 17, 2017      92        5.8
## 165                                Drama        May 1, 2020     121        5.8
## 166                                Drama   November 1, 2019      90        5.8
## 167                               Biopic  December 16, 2016     104        5.8
## 168                               Comedy     April 27, 2018      92        5.8
## 169                                Drama       June 5, 2020     114        5.8
## 170                                Drama    August 21, 2020      98        5.8
## 171             Science fiction/Thriller      July 27, 2018      95        5.8
## 172                      Romantic comedy     March 30, 2018      78        5.8
## 173                             Thriller       May 14, 2021     107        5.8
## 174                      Romantic comedy   November 8, 2019      92        5.8
## 175                         Mockumentary   October 13, 2016      95        5.8
## 176                      Romantic comedy   November 5, 2020      96        5.8
## 177                         Comedy-drama  November 30, 2018     118        5.8
## 178                      Romantic comedy     April 30, 2020     105        5.8
## 179                               Satire     April 17, 2020      94        5.8
## 180                         One-man show     April 28, 2017      52        5.8
## 181                Romantic comedy-drama  September 7, 2018     105        5.8
## 182                          Dark comedy     April 28, 2017      95        5.8
## 183                               Satire     April 29, 2016     100        5.8
## 184             Science fiction/Thriller      June 29, 2018      97        5.8
## 185                               Comedy    August 24, 2018      89        5.8
## 186                        Comedy/Horror September 10, 2020     102        5.8
## 187                              Fantasy   December 7, 2020      96        5.8
## 188                      Romantic comedy      July 24, 2020     131        5.8
## 189                      Romantic comedy     April 12, 2019      89        5.8
## 190                                Drama  November 11, 2020      93        5.8
## 191                      Romantic comedy    October 2, 2020     111        5.8
## 192                                Drama      April 6, 2018      75        5.9
## 193                             Thriller   January 17, 2020     120        5.9
## 194                         Sports-drama      April 6, 2018      96        5.9
## 195                         Zombie/Heist       May 21, 2021     148        5.9
## 196                 Psychological horror  November 16, 2018      94        5.9
## 197                              Mystery  November 15, 2019     107        5.9
## 198                         Mockumentary      July 16, 2019      32        5.9
## 199                                Drama   February 7, 2020     104        5.9
## 200                          Documentary September 28, 2018      23        5.9
## 201                      Romantic comedy     March 27, 2020     111        5.9
## 202                             Thriller     March 27, 2020      83        5.9
## 203                          Documentary    January 1, 2021      53        5.9
## 204                         Comedy-drama   January 12, 2018      95        5.9
## 205                              Musical  December 11, 2020     132        5.9
## 206                        Action comedy  November 11, 2016      98        5.9
## 207                          Sports film     March 20, 2020     108        5.9
## 208                               Biopic     April 13, 2018     106        6.0
## 209                                Drama        May 4, 2018     104        6.0
## 210             Science fiction/Thriller   January 27, 2017      90        6.0
## 211                                Drama     August 9, 2019     106        6.0
## 212                                Drama      March 8, 2019      90        6.0
## 213                       Comedy mystery      June 14, 2019      97        6.0
## 214                            Superhero    August 14, 2020     113        6.0
## 215                    Romantic thriller   October 21, 2020     123        6.0
## 216                     Christmas comedy  November 25, 2020     115        6.0
## 217                      Romantic comedy       May 11, 2018     105        6.0
## 218                      Romantic comedy  November 16, 2018     101        6.0
## 219                      Romantic comedy  February 12, 2020     102        6.0
## 220                           War-Comedy       May 26, 2017     122        6.0
## 221                               Action  December 13, 2019     128        6.1
## 222                               Comedy September 20, 2019      82        6.1
## 223                                Drama     March 10, 2017     102        6.1
## 224                          Documentary     April 28, 2017      80        6.1
## 225                                Drama     March 17, 2017      94        6.1
## 226                               Family   January 29, 2021     123        6.1
## 227              Romantic comedy/Holiday   October 28, 2020     104        6.1
## 228                    Adventure-romance   November 1, 2019      85        6.1
## 229                          Documentary       May 29, 2015      84        6.1
## 230                               Comedy     August 3, 2018     103        6.1
## 231                          Crime drama     March 13, 2020      95        6.1
## 232                               Comedy     August 2, 2019     100        6.1
## 233                            Adventure     March 18, 2016      89        6.1
## 234                          Crime drama   October 30, 2020     116        6.1
## 235                               Biopic     April 17, 2020     118        6.1
## 236                                Drama    January 8, 2021      96        6.1
## 237                                Drama      April 1, 2021     114        6.1
## 238                              Western  November 10, 2017      99        6.1
## 239                      Romantic comedy       May 22, 2020      87        6.1
## 240                               Biopic     March 24, 2017      92        6.1
## 241                      Horror-thriller       May 24, 2019      90        6.1
## 242                                Drama   January 15, 2021      95        6.1
## 243                             Thriller    August 28, 2020      96        6.1
## 244                         Dance comedy     August 7, 2020      93        6.1
## 245                          Stop Motion  November 20, 2020      42        6.2
## 246                               Biopic       May 26, 2021      92        6.2
## 247                                Drama   January 29, 2021     106        6.2
## 248                                Drama   November 6, 2020     151        6.2
## 249                         Comedy-drama    August 17, 2020     101        6.2
## 250                               Comedy      April 9, 2021     114        6.2
## 251                         Sports-drama   February 8, 2019      90        6.2
## 252                             Thriller September 27, 2019     115        6.2
## 253                             Thriller      June 19, 2020      92        6.2
## 254                            Animation    August 14, 2020      72        6.2
## 255                             Thriller      July 24, 2020     139        6.2
## 256                               Biopic     March 23, 2018      98        6.2
## 257                      Romantic comedy     April 19, 2019      92        6.2
## 258                        Action comedy      March 6, 2020     111        6.2
## 259                                Drama September 14, 2018      98        6.2
## 260                          Documentary     April 27, 2018     104        6.2
## 261                          Documentary   December 1, 2017      95        6.2
## 262                               Comedy      April 7, 2017      88        6.2
## 263                   Horror/Crime drama   October 20, 2017     102        6.3
## 264                          Documentary       May 22, 2019      30        6.3
## 265                      Romantic comedy       June 8, 2018      99        6.3
## 266                      Horror-thriller   October 12, 2018     129        6.3
## 267                          Family film     March 16, 2018      87        6.3
## 268                        Urban fantasy  December 22, 2017     117        6.3
## 269                         Drama/Horror       May 18, 2018     104        6.3
## 270                                Drama      April 2, 2021     111        6.3
## 271                  Family/Comedy-drama      June 19, 2020     107        6.3
## 272                               Comedy     March 18, 2021      97        6.3
## 273                      Romantic comedy     April 13, 2018      98        6.3
## 274                                Drama   January 28, 2021      90        6.3
## 275                                Drama     April 19, 2019     101        6.3
## 276                          Documentary       May 26, 2021      72        6.3
## 277                                Drama  November 24, 2020      83        6.3
## 278                               Action   January 25, 2019     118        6.3
## 279                               Comedy  December 21, 2018      44        6.3
## 280                                  War     April 21, 2017     113        6.3
## 281                       Crime thriller       June 9, 2017      86        6.3
## 282               Science fiction/Action   December 9, 2016     108        6.3
## 283                   Teen comedy horror   October 13, 2017      85        6.3
## 284                Science fiction/Drama     March 31, 2017     102        6.3
## 285                                Drama   October 11, 2019     151        6.3
## 286                         Comedy-drama   October 18, 2019      98        6.3
## 287                          Documentary     March 29, 2019      87        6.3
## 288                          Crime drama      March 9, 2018     120        6.3
## 289                             Thriller     April 23, 2020     134        6.3
## 290                      Romantic comedy  February 12, 2021     109        6.3
## 291                          Documentary    August 28, 2019      85        6.3
## 292                                Drama     March 27, 2020     103        6.3
## 293                          Documentary     August 5, 2020      94        6.4
## 294                         Concert Film  December 21, 2020      97        6.4
## 295             Science fiction/Thriller September 16, 2016      88        6.4
## 296                          Documentary September 25, 2019      37        6.4
## 297                       Musical comedy  December 24, 2019     112        6.4
## 298                         Sports-drama     March 30, 2018     102        6.4
## 299                             Thriller   October 11, 2019     100        6.4
## 300                                Drama  February 16, 2018      96        6.4
## 301                      Romantic comedy  February 14, 2020     113        6.4
## 302                          Documentary    August 20, 2020      16        6.4
## 303                       Romantic drama  February 11, 2021     119        6.4
## 304                          Documentary     April 29, 2020      97        6.4
## 305                          Documentary  December 13, 2014      81        6.4
## 306                         Comedy-drama September 21, 2018      98        6.4
## 307          Animation/Musical/Adventure   October 23, 2020      95        6.4
## 308                                Drama   October 12, 2019      96        6.4
## 309                          Documentary September 15. 2017     107        6.4
## 310                 Animation / Musicial September 27, 2019      41        6.4
## 311                          Documentary     March 16, 2018      87        6.4
## 312                         Comedy-drama   January 14, 2021     101        6.4
## 313                          Documentary        May 5, 2017      97        6.4
## 314                             Thriller     March 25, 2020     103        6.4
## 315           Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 316                      Action-thriller     March 13, 2019     125        6.4
## 317                          Documentary September 28, 2018     116        6.4
## 318                                Drama      March 8, 2019      99        6.4
## 319                      Action thriller   October 20, 2017      82        6.4
## 320                      Romantic comedy   February 9, 2018      97        6.4
## 321                          Documentary   October 28, 2019      28        6.5
## 322                              Romance  February 28, 2020     108        6.5
## 323                                Drama    August 28, 2020      93        6.5
## 324                Anime/Science fiction     March 19, 2020      74        6.5
## 325                          Documentary     March 21, 2019      60        6.5
## 326                    Animation / Short  December 11, 2020       9        6.5
## 327                          Documentary     April 17, 2021      21        6.5
## 328                               Comedy       May 31, 2019     100        6.5
## 329                            War drama      June 12, 2020     155        6.5
## 330                          Documentary      April 7, 2021      55        6.5
## 331                       Musical comedy      June 26, 2020     123        6.5
## 332                      Horror thriller September 29, 2017     103        6.5
## 333                             Thriller   October 30, 2020      93        6.5
## 334             Family/Christmas musical  November 13, 2020     119        6.5
## 335                          Documentary      June 14, 2019      40        6.5
## 336                                Drama      June 15, 2018     120        6.5
## 337                                Drama        May 7, 2021      98        6.5
## 338                            Adventure   December 7, 2018     104        6.5
## 339                                Drama      June 24, 2020      91        6.5
## 340                          Documentary      June 23, 2017      95        6.5
## 341             Science fiction thriller       May 12, 2021     101        6.5
## 342                      Romantic comedy      June 15, 2018     105        6.5
## 343                               Comedy      July 28, 2017      83        6.5
## 344                                Drama     April 10, 2020      91        6.5
## 345                              Romance     April 21, 2017      83        6.5
## 346                        Drama / Short   January 20, 2020      17        6.5
## 347           Hidden-camera prank comedy     March 26, 2021      86        6.6
## 348               Psychological thriller  December 21, 2018     124        6.6
## 349                               Horror      June 24, 2020      94        6.6
## 350                      Romantic comedy  February 26, 2021     102        6.6
## 351                              Romance       June 7, 2019     118        6.6
## 352                          Documentary    August 19, 2016      79        6.6
## 353               Psychological thriller  September 4, 2020     134        6.6
## 354                          Documentary   October 25, 2019     126        6.6
## 355                                Drama        May 7, 2021      98        6.6
## 356                          Documentary      June 29, 2018      89        6.6
## 357                          Documentary   December 7, 2018      58        6.6
## 358                          Documentary  November 23, 2020      83        6.6
## 359                      Science fiction   February 5, 2021     136        6.6
## 360                          Documentary   December 7, 2018      98        6.6
## 361                         Spy thriller September 14, 2018     114        6.6
## 362                          Crime drama    August 20, 2020      99        6.6
## 363                         Spy thriller      July 31, 2019     130        6.6
## 364                          Documentary   January 15, 2021      32        6.6
## 365                        Anime/Fantasy      June 18, 2020     104        6.7
## 366                                Drama     April 16, 2021     142        6.7
## 367              Animated musical comedy     April 16, 2021      92        6.7
## 368                          Documentary  November 20, 2019      86        6.7
## 369                Anime/Science fiction       May 20, 2017     106        6.7
## 370                                Drama       May 27, 2021      95        6.7
## 371                          Documentary      June 16, 2017      91        6.7
## 372                          Documentary   January 11, 2021      89        6.7
## 373                               Action     April 24, 2020     117        6.7
## 374                          Documentary  December 11, 2020      90        6.7
## 375                                Drama  November 24, 2020     117        6.7
## 376                          Documentary September 15, 2020      80        6.7
## 377                                Drama   February 3, 2017      87        6.7
## 378                               Comedy   December 3, 2020     101        6.7
## 379                          Documentary   October 28, 2019      19        6.7
## 380                       Romantic drama   February 5, 2021     106        6.7
## 381                         Variety Show   February 7, 2017      54        6.7
## 382                                Drama      March 3, 2021     111        6.7
## 383                                Drama      April 9, 2021     132        6.7
## 384                                Drama     March 12, 2021      97        6.7
## 385                          Documentary      July 10, 2019     106        6.7
## 386                         Comedy-drama      July 29, 2016     111        6.7
## 387                     Superhero/Action      July 10, 2020     124        6.7
## 388                          Documentary      July 15. 2016     116        6.7
## 389                                Drama   October 18, 2019     112        6.7
## 390                                Drama   October 10, 2018     144        6.8
## 391                                Drama   October 28, 2016      76        6.8
## 392                  Biographical/Comedy   January 26, 2018     101        6.8
## 393                          Documentary     March 20, 2020      92        6.8
## 394                          Documentary September 21, 2020      19        6.8
## 395                          Documentary        May 3, 2019      39        6.8
## 396                      Romantic comedy       May 31, 2019     102        6.8
## 397                          Documentary        May 6, 2020      89        6.8
## 398                               Comedy     August 3, 2018     105        6.8
## 399                             Thriller      June 29, 2018     101        6.8
## 400                               Comedy  December 27, 2020      70        6.8
## 401                          Documentary September 17, 2020      96        6.8
## 402                          Documentary       May 11, 2020      85        6.8
## 403                          Documentary September 12, 2017      39        6.8
## 404                          Documentary     April 20, 2018      79        6.8
## 405                          Documentary  November 21, 2017      73        6.8
## 406                                Drama    October 2, 2020     114        6.8
## 407                                Drama September 30, 2020     121        6.8
## 408                Aftershow / Interview September 30, 2020      28        6.8
## 409                                Drama  November 13, 2020      95        6.8
## 410                                Drama   November 2, 2018     122        6.8
## 411                          Documentary   February 9, 2018      23        6.8
## 412                                Drama      July 14, 2017     107        6.8
## 413                          Documentary    January 6, 2021      98        6.8
## 414                             Thriller  December 24, 2020     108        6.9
## 415                          Documentary September 30, 2016      92        6.9
## 416                          Documentary    October 8, 2020     100        6.9
## 417                          Documentary      March 1, 2021      97        6.9
## 418                    Animation / Short  December 28, 2020       7        6.9
## 419                                Drama  February 24, 2017      96        6.9
## 420                          Documentary       May 19, 2017     100        6.9
## 421                               Biopic   December 4, 2020     132        6.9
## 422                              Romance September 29, 2017     103        6.9
## 423                      Historical-epic   November 9, 2018     121        6.9
## 424                         Comedy-drama     March 26, 2021     114        6.9
## 425                          Documentary   October 12, 2018      57        6.9
## 426                          Documentary   February 9, 2018      95        6.9
## 427                          Documentary       June 3, 2020      83        6.9
## 428                          Documentary      July 10, 2020      17        6.9
## 429                              Romance        May 1, 2020     105        6.9
## 430                          Crime drama     March 29, 2019     131        6.9
## 431                     Comedy / Musical       May 23, 2019      30        6.9
## 432                         Comedy-drama   October 13, 2017     112        6.9
## 433                          Documentary   October 12, 2018      86        7.0
## 434                          Documentary September 22, 2017     100        7.0
## 435                Aftershow / Interview   November 3, 2020      14        7.0
## 436                          Documentary   October 13, 2017     109        7.0
## 437                          Documentary  November 20, 2019      28        7.0
## 438                          Documentary September 15, 2019      64        7.0
## 439                                Drama  December 18, 2020      94        7.0
## 440                Aftershow / Interview  December 18, 2020      31        7.0
## 441                          Documentary     March 17, 2021      99        7.0
## 442                          Documentary  February 23, 2021     108        7.0
## 443                          Documentary     April 26, 2019      48        7.0
## 444                          Documentary       May 17, 2019      84        7.0
## 445                          Documentary     March 22, 2019      70        7.0
## 446                          Documentary  September 1, 2017      27        7.0
## 447                   Animation / Comedy     August 9, 2019      45        7.0
## 448                               Comedy   December 9, 2020     117        7.0
## 449   Christmas/Fantasy/Adventure/Comedy  November 22, 2018     104        7.0
## 450                               Biopic     March 22, 2019     108        7.0
## 451                      Action-thriller   October 19, 2018     121        7.0
## 452                Aftershow / Interview   January 26, 2017      36        7.1
## 453                            Animation  November 30, 2018      30        7.1
## 454                            Animation   December 1, 2020      47        7.1
## 455                                Drama      June 19, 2019     110        7.1
## 456                          Documentary     April 22, 2020      92        7.1
## 457                          Documentary  November 27, 2020      80        7.1
## 458                    Mentalism special   October 19, 2018      49        7.1
## 459                          Documentary  December 27, 2019      73        7.1
## 460                          Documentary        May 4, 2018      40        7.1
## 461                          Documentary September 10, 2019      96        7.1
## 462                          Crime drama       May 14, 2021     106        7.1
## 463                          Documentary     April 20, 2019      97        7.1
## 464                          Documentary   October 27, 2020      94        7.1
## 465                          Documentary       May 26, 2017      78        7.1
## 466                          Documentary September 18, 2015      81        7.1
## 467                          Documentary        May 1, 2019      87        7.1
## 468                         One-man show  November 13, 2018      91        7.1
## 469                          Documentary     March 18, 2016      91        7.1
## 470                          Documentary   October 20, 2017      95        7.1
## 471                                Drama    January 7, 2021     126        7.1
## 472                          Documentary      April 6, 2018      31        7.1
## 473                          Documentary   November 2, 2018      58        7.1
## 474                          Documentary   October 15, 2020      41        7.1
## 475               Psychological thriller September 16, 2020     138        7.1
## 476                                Drama   January 29, 2021     112        7.1
## 477                          Documentary      July 24, 2019     114        7.1
## 478                                Drama   January 22, 2021     125        7.1
## 479                      Romantic comedy    August 17, 2018      99        7.1
## 480                          Documentary September 30, 2020      82        7.2
## 481                          Documentary September 23, 2016      98        7.2
## 482                                Drama September 15, 2017     136        7.2
## 483                          Documentary   January 18, 2019      97        7.2
## 484                          Documentary   October 28, 2016     107        7.2
## 485                          Documentary     April 10, 2020      92        7.2
## 486                          Documentary      March 8, 2018      39        7.2
## 487                      Romantic comedy  February 14, 2018     133        7.2
## 488                         Drama-Comedy  February 22, 2019      89        7.2
## 489                                Drama    October 5, 2018     124        7.2
## 490           Coming-of-age comedy-drama   October 18, 2019      99        7.2
## 491                                Drama        May 1, 2018     101        7.2
## 492                          Crime drama   January 18, 2019      97        7.2
## 493                               Comedy    October 9, 2020     124        7.2
## 494                                Drama     April 30, 2021     129        7.2
## 495                          Documentary      June 19, 2019     121        7.2
## 496                     Historical drama   November 1, 2019     140        7.2
## 497                            Making-of   October 29, 2019      13        7.2
## 498                                  War    October 7, 2016     108        7.2
## 499                          Documentary    August 10, 2018      11        7.2
## 500                               Biopic   October 25, 2019     118        7.3
## 501                          Crime drama   October 11, 2019     121        7.3
## 502                          Documentary September 13, 2016      24        7.3
## 503                          Documentary      July 17, 2020     100        7.3
## 504                          Documentary       May 12, 2017     101        7.3
## 505                                Drama       May 27, 2020     105        7.3
## 506                          Documentary       July 8, 2020      96        7.3
## 507                            Animation   October 13, 2020      47        7.3
## 508                     Action-adventure      June 28, 2017     121        7.3
## 509                          Crime drama September 12, 2018     100        7.3
## 510                             Thriller      July 31, 2020     149        7.3
## 511                          Documentary   January 11, 2019      64        7.3
## 512                          Documentary   February 8, 2019      64        7.3
## 513                          Documentary   October 28, 2020     114        7.3
## 514                    Animation / Short      March 8, 2020      15        7.3
## 515                          Documentary   October 14, 2016      79        7.3
## 516                          Documentary     April 29, 2016      90        7.3
## 517                              Western  November 16, 2018     132        7.3
## 518                          Documentary    October 6, 2017     105        7.3
## 519                         Comedy-drama      June 24, 2016      97        7.3
## 520                          Documentary       May 22, 2015      83        7.3
## 521                          Documentary    August 21, 2019     110        7.4
## 522                          Documentary   November 1, 2019      39        7.4
## 523                          Documentary September 29, 2017      40        7.4
## 524                          Documentary   January 31, 2020      85        7.4
## 525                          Documentary  February 12, 2019      26        7.4
## 526                         Concert Film  November 25, 2020      87        7.4
## 527                          Documentary   October 26, 2018      97        7.4
## 528                          Documentary       June 7, 2019     118        7.4
## 529                Aftershow / Interview  November 27, 2019      23        7.4
## 530                          Documentary      July 29, 2020      40        7.4
## 531                          Documentary   November 2, 2018      98        7.4
## 532                          Documentary      July 17, 2015      80        7.4
## 533                         Concert Film  November 22, 2017     108        7.5
## 534                          Documentary   October 14, 2020      79        7.5
## 535                          Documentary  September 7, 2018      74        7.5
## 536                          Documentary    October 2, 2020      90        7.5
## 537                          Documentary     April 17, 2019     137        7.5
## 538          Animation / Science Fiction    August 16, 2019      71        7.5
## 539                          Documentary   October 27. 2017      98        7.5
## 540                         Variety show  December 24, 2019      70        7.5
## 541                          Documentary September 13, 2018      99        7.5
## 542                          Documentary September 16. 2016      40        7.5
## 543                          Documentary      June 24, 2020     104        7.6
## 544                Anthology/Dark comedy  November 12, 2020     149        7.6
## 545                          Documentary September 21, 2018     124        7.6
## 546                          Documentary      June 12, 2019     144        7.6
## 547                          Documentary   October 18, 2019      85        7.6
## 548                          Documentary      July 27, 2018     100        7.6
## 549                          Documentary  September 9, 2020      94        7.6
## 550                                Drama  December 20, 2019     125        7.6
## 551                          Documentary      June 26, 2015      84        7.6
## 552                                Drama  February 21, 2020     117        7.6
## 553                      Musical / Short      June 27, 2019      15        7.7
## 554                            War drama   October 16, 2015     136        7.7
## 555                          Documentary     April 19, 2019      76        7.7
## 556                          Documentary     March 25, 2020     108        7.7
## 557                          Documentary  November 17, 2017      94        7.7
## 558                         Concert Film   October 12, 2016      90        7.7
## 559                            Making-of  February 11, 2020      72        7.7
## 560                                Drama  December 14, 2018     135        7.7
## 561                    Animation / Short  November 20, 2020      12        7.8
## 562                          Crime drama  November 27, 2019     209        7.8
## 563                                Drama   October 16, 2020     130        7.8
## 564                          Documentary     April 29, 2020      82        7.9
## 565                          Documentary     August 4, 2017     120        7.9
## 566                                Drama   December 6, 2019     136        7.9
## 567                          Documentary   November 4, 2016     112        7.9
## 568                          Documentary  December 21, 2018     105        8.0
## 569                          Documentary      July 14, 2017      89        8.1
## 570                          Documentary  September 7, 2020      85        8.1
## 571                          Documentary    August 26, 2020     106        8.1
## 572                          Documentary    October 7, 2016     100        8.2
## 573                          Documentary      June 19, 2020     107        8.2
## 574 Animation/Christmas/Comedy/Adventure  November 15, 2019      97        8.2
## 575                          Documentary     March 24, 2021      89        8.2
## 576                          Documentary   October 14, 2020     109        8.2
## 577                          Documentary  November 24, 2017     114        8.3
## 578                          Documentary   October 23, 2019      51        8.3
## 579                         Concert Film       May 20, 2020      85        8.4
## 580                         Concert Film  December 31, 2018     125        8.4
## 581                          Documentary    October 9, 2015      91        8.4
## 582                         One-man show  December 16, 2018     153        8.5
## 583                          Documentary   December 8, 2020      89        8.6
## 584                          Documentary    October 4, 2020      83        9.0
##                       Language
## 1             English/Japanese
## 2                      Spanish
## 3                      Italian
## 4                      English
## 5                        Hindi
## 6                        Hindi
## 7                      Turkish
## 8                      English
## 9                      English
## 10                       Hindi
## 11                     English
## 12                      Korean
## 13                  Indonesian
## 14                       Malay
## 15                     English
## 16                     Spanish
## 17                       Hindi
## 18                     English
## 19                      Korean
## 20                     English
## 21                     English
## 22                     English
## 23                     English
## 24                       Hindi
## 25                     English
## 26                     English
## 27                       Dutch
## 28                     English
## 29                      French
## 30                     Italian
## 31             English/Spanish
## 32                     English
## 33                      French
## 34                  Portuguese
## 35                     English
## 36                     Italian
## 37                      French
## 38                    Filipino
## 39                     English
## 40                      French
## 41                     English
## 42                     Italian
## 43                     English
## 44                      German
## 45                     English
## 46                       Hindi
## 47                      Polish
## 48                     English
## 49                     English
## 50                     English
## 51                      French
## 52                     English
## 53                     English
## 54                     Spanish
## 55                  Portuguese
## 56                     English
## 57                  Indonesian
## 58                     English
## 59                      Polish
## 60                   Norwegian
## 61                     English
## 62                     English
## 63                     English
## 64                  Indonesian
## 65                     English
## 66                     English
## 67                     English
## 68                     English
## 69                     English
## 70                     English
## 71                     Marathi
## 72                        Thai
## 73                     English
## 74                     English
## 75                     English
## 76                     English
## 77                     English
## 78                     English
## 79                     English
## 80                     English
## 81                     English
## 82                     English
## 83                     Italian
## 84                     English
## 85                     English
## 86                      French
## 87                     English
## 88                       Hindi
## 89                     Spanish
## 90                      French
## 91                     English
## 92                      French
## 93                     Spanish
## 94                     English
## 95                     English
## 96                     English
## 97                     Spanish
## 98                       Hindi
## 99                      German
## 100                    English
## 101                      Hindi
## 102                    English
## 103                     French
## 104                    English
## 105                    English
## 106                    English
## 107                    Italian
## 108                    English
## 109                    English
## 110                   Filipino
## 111                 Portuguese
## 112                    English
## 113                      Hindi
## 114                    English
## 115                    English
## 116                    English
## 117                    English
## 118                    Swedish
## 119                   Japanese
## 120                    English
## 121                    English
## 122                    English
## 123                    English
## 124                    English
## 125                    English
## 126                    English
## 127             Spanish/Basque
## 128                    English
## 129                 Portuguese
## 130                    English
## 131                    English
## 132                    English
## 133                    Turkish
## 134                    English
## 135                    English
## 136                    Italian
## 137                    English
## 138                    Spanish
## 139                    English
## 140                    English
## 141                    English
## 142                    English
## 143                    Italian
## 144                    English
## 145                    Spanish
## 146                    English
## 147                    English
## 148                      Hindi
## 149                    English
## 150                    English
## 151                    English
## 152                       Thai
## 153                    English
## 154                    English
## 155                     Polish
## 156                    English
## 157                    English
## 158                    English
## 159                    English
## 160                    English
## 161                    English
## 162                    Marathi
## 163                    English
## 164                    English
## 165                    English
## 166                    English
## 167                    English
## 168                    English
## 169                      Hindi
## 170                      Hindi
## 171                    English
## 172                    English
## 173                    English
## 174                    English
## 175                    English
## 176                    English
## 177                      Hindi
## 178                 Portuguese
## 179                     German
## 180                    English
## 181                    English
## 182                    English
## 183                    English
## 184                    English
## 185                    English
## 186                    English
## 187                      Dutch
## 188                    English
## 189                    English
## 190                     German
## 191                    Spanish
## 192                    English
## 193                    English
## 194                    English
## 195                    English
## 196                    English
## 197                    English
## 198                    English
## 199                    English
## 200                    English
## 201                      Hindi
## 202                     French
## 203                    English
## 204                    English
## 205                    English
## 206                    English
## 207                    Italian
## 208                    English
## 209                    Italian
## 210                    English
## 211                      Hindi
## 212                    English
## 213                    English
## 214                    English
## 215                    English
## 216                    English
## 217                    English
## 218                    English
## 219                    English
## 220                    English
## 221                    English
## 222                    English
## 223                    English
## 224                    English
## 225                    English
## 226                    English
## 227                    English
## 228                    English
## 229                    English
## 230                    English
## 231                    English
## 232                    English
## 233                    English
## 234                     French
## 235                    English
## 236                    Turkish
## 237                 Indonesian
## 238                 Portuguese
## 239                    English
## 240                    English
## 241                    English
## 242                      Hindi
## 243                    Spanish
## 244                    English
## 245                    English
## 246                    Italian
## 247                    Spanish
## 248                    English
## 249                 Indonesian
## 250                    Turkish
## 251                    English
## 252                    English
## 253                     French
## 254                    English
## 255                    Spanish
## 256                    English
## 257                    English
## 258                    English
## 259                    English
## 260                    English
## 261                    English
## 262                    English
## 263                    English
## 264            English/Spanish
## 265                    English
## 266                    English
## 267                    English
## 268                    English
## 269                    English
## 270                    English
## 271                    English
## 272                 Portuguese
## 273                     French
## 274                 Indonesian
## 275                      Hindi
## 276                    English
## 277                    Spanish
## 278                    English
## 279                 Portuguese
## 280                    English
## 281                    English
## 282                    English
## 283                    English
## 284                    English
## 285                   Japanese
## 286                    English
## 287                    English
## 288           English/Japanese
## 289                     Korean
## 290                    English
## 291                    English
## 292                    English
## 293                     French
## 294                    English
## 295                    English
## 296            English/Spanish
## 297                    Spanish
## 298                    English
## 299                    English
## 300                    English
## 301                     German
## 302                    English
## 303                 Indonesian
## 304                    English
## 305                    English
## 306                    English
## 307                    English
## 308                     French
## 309                    English
## 310                    English
## 311                    English
## 312                 Indonesian
## 313                    English
## 314                    Spanish
## 315                    English
## 316                    English
## 317            Spanish/Catalan
## 318                    English
## 319                    English
## 320                    English
## 321            English/Spanish
## 322                    English
## 323                    English
## 324                   Japanese
## 325                     French
## 326                    English
## 327                    English
## 328                      Hindi
## 329                    English
## 330                    English
## 331                    English
## 332                    English
## 333                    English
## 334                    English
## 335            English/Swedish
## 336                      Hindi
## 337                    English
## 338                    English
## 339                    Spanish
## 340                    English
## 341                     French
## 342                    English
## 343                    English
## 344 English/Taiwanese/Mandarin
## 345                    English
## 346                    English
## 347                    English
## 348                    English
## 349                      Hindi
## 350                    Spanish
## 351                    Spanish
## 352                    English
## 353                    English
## 354                    English
## 355                      Hindi
## 356                    English
## 357                    English
## 358                    English
## 359                     Korean
## 360                    English
## 361                    English
## 362                    Spanish
## 363                    English
## 364                    English
## 365                   Japanese
## 366                      Hindi
## 367                    English
## 368                    English
## 369                   Japanese
## 370                    English
## 371                    English
## 372                    English
## 373                    English
## 374                    English
## 375                    English
## 376               Thia/English
## 377                    English
## 378                 Portuguese
## 379                   Japanese
## 380                    English
## 381                    English
## 382                    English
## 383                     Korean
## 384                    Turkish
## 385                    Spanish
## 386                    English
## 387                    English
## 388                    English
## 389                      Hindi
## 390                    English
## 391                    Spanish
## 392                    English
## 393                    Spanish
## 394                    English
## 395           English/Mandarin
## 396                    English
## 397                    English
## 398                      Hindi
## 399                    English
## 400                    English
## 401                     French
## 402                    English
## 403                    English
## 404                    English
## 405                    English
## 406                      Hindi
## 407                    English
## 408                    English
## 409                    Italian
## 410                    English
## 411                   Georgian
## 412                    English
## 413                     French
## 414                      Hindi
## 415                    English
## 416                     French
## 417                    English
## 418                    English
## 419                    English
## 420                 Portuguese
## 421                    English
## 422                    English
## 423                    English
## 424                      Hindi
## 425                    English
## 426                    English
## 427                    English
## 428                    English
## 429                    English
## 430                    English
## 431                    English
## 432                    English
## 433                    English
## 434                    English
## 435                    English
## 436                    English
## 437                    Spanish
## 438                    Spanish
## 439                    English
## 440                    English
## 441                    English
## 442                    English
## 443                    English
## 444                    English
## 445                    English
## 446                    English
## 447                    English
## 448                    Italian
## 449                    English
## 450                    English
## 451                 Indonesian
## 452                    English
## 453                    English
## 454                    English
## 455                    English
## 456                    English
## 457                    English
## 458                    English
## 459                    Spanish
## 460                    English
## 461                    English
## 462                      Dutch
## 463                    English
## 464                    Spanish
## 465                    English
## 466                    English
## 467                    English
## 468                    English
## 469                    English
## 470                    English
## 471                    English
## 472                    English
## 473                    English
## 474                    Bengali
## 475                    English
## 476                    English
## 477                    English
## 478                    English
## 479                    English
## 480                    English
## 481                    English
## 482       Khmer/English/French
## 483                    English
## 484                    English
## 485                    English
## 486              English/Hindi
## 487                      Hindi
## 488                    English
## 489                    English
## 490                    Spanish
## 491                      Tamil
## 492                      Hindi
## 493                    English
## 494                    Marathi
## 495                 Portuguese
## 496                    English
## 497                    English
## 498                    English
## 499                    English
## 500                    English
## 501                    English
## 502                    English
## 503                    English
## 504                    English
## 505                    Spanish
## 506            Spanish/English
## 507                    English
## 508             English/Korean
## 509                    Italian
## 510                      Hindi
## 511            English/Spanish
## 512                    English
## 513             English/Arabic
## 514                    English
## 515           English/Mandarin
## 516            English/Russian
## 517                    English
## 518                    English
## 519                    English
## 520                    English
## 521                    English
## 522                    English
## 523                    English
## 524                    English
## 525              English/Hindi
## 526                    English
## 527                    English
## 528                    English
## 529                    English
## 530                    English
## 531                    English
## 532                    English
## 533                    English
## 534                     Korean
## 535                    English
## 536                    English
## 537                    English
## 538                    English
## 539                    English
## 540                    English
## 541                    English
## 542                    English
## 543                    English
## 544                      Hindi
## 545                    English
## 546                    English
## 547                    English
## 548                    English
## 549                    English
## 550                    English
## 551                    English
## 552                      Hindi
## 553                    English
## 554               English/Akan
## 555                    English
## 556                    English
## 557                    English
## 558                    English
## 559                    Spanish
## 560                    Spanish
## 561                    English
## 562                    English
## 563                    English
## 564                    English
## 565                    English
## 566                    English
## 567                    English
## 568                    English
## 569                    English
## 570                    English
## 571                    English
## 572                    English
## 573                    English
## 574                    English
## 575                    English
## 576                    Spanish
## 577                    English
## 578                    English
## 579                    English
## 580                    English
## 581   English/Ukranian/Russian
## 582                    English
## 583                 Portuguese
## 584                    English
head(stack(df))
##            values   ind
## 1 Enter the Anime Title
## 2     Dark Forces Title
## 3         The App Title
## 4  The Open House Title
## 5     Kaali Khuhi Title
## 6           Drive Title
head(as.matrix(df))
##      Title             Genre                   Premiere            Runtime
## [1,] "Enter the Anime" "Documentary"           "August 5, 2019"    " 58"  
## [2,] "Dark Forces"     "Thriller"              "August 21, 2020"   " 81"  
## [3,] "The App"         "Science fiction/Drama" "December 26, 2019" " 79"  
## [4,] "The Open House"  "Horror thriller"       "January 19, 2018"  " 94"  
## [5,] "Kaali Khuhi"     "Mystery"               "October 30, 2020"  " 90"  
## [6,] "Drive"           "Action"                "November 1, 2019"  "147"  
##      IMDB.Score Language          
## [1,] "2.5"      "English/Japanese"
## [2,] "2.6"      "Spanish"         
## [3,] "2.6"      "Italian"         
## [4,] "3.2"      "English"         
## [5,] "3.4"      "Hindi"           
## [6,] "3.5"      "Hindi"
is.data.frame(df)
## [1] TRUE
is.table(df)
## [1] FALSE
seq_along(df)
## [1] 1 2 3 4 5 6
qqnorm(df$Runtime)

qqnorm(df$IMDB.Score)

df.mat = as.matrix(head(df))
df.mat
##   Title             Genre                   Premiere            Runtime
## 1 "Enter the Anime" "Documentary"           "August 5, 2019"    " 58"  
## 2 "Dark Forces"     "Thriller"              "August 21, 2020"   " 81"  
## 3 "The App"         "Science fiction/Drama" "December 26, 2019" " 79"  
## 4 "The Open House"  "Horror thriller"       "January 19, 2018"  " 94"  
## 5 "Kaali Khuhi"     "Mystery"               "October 30, 2020"  " 90"  
## 6 "Drive"           "Action"                "November 1, 2019"  "147"  
##   IMDB.Score Language          
## 1 "2.5"      "English/Japanese"
## 2 "2.6"      "Spanish"         
## 3 "2.6"      "Italian"         
## 4 "3.2"      "English"         
## 5 "3.4"      "Hindi"           
## 6 "3.5"      "Hindi"
class(df)
## [1] "data.frame"
class(dimnames(head(df)))
## [1] "list"
plot(df$Runtime)

stem(df$Runtime)
## 
##   The decimal point is 1 digit(s) to the right of the |
## 
##    0 | 479
##    1 | 012345567799
##    2 | 113334567888
##    3 | 000112246779999
##    4 | 0000011245677899
##    5 | 12345678888
##    6 | 0034444
##    7 | 000012223334456688899999
##    8 | 00000001111222233333333333344455555555555666666666667777777788889999
##    9 | 00000000000000001111111122222222222222222333333344444444444444444445+74
##   10 | 00000000000000000111111111111111222222222222223333333333444444444444+37
##   11 | 00111111222222222222333344444444445556666677777788888889999
##   12 | 0000001111111122333444444555555666899
##   13 | 001112222344566667899
##   14 | 02244478999
##   15 | 1135
##   16 | 
##   17 | 
##   18 | 
##   19 | 
##   20 | 9
stem(df$Runtime, scale = 2)
## 
##   The decimal point is 1 digit(s) to the right of the |
## 
##    0 | 479
##    1 | 012345567799
##    2 | 113334567888
##    3 | 000112246779999
##    4 | 0000011245677899
##    5 | 12345678888
##    6 | 0034444
##    7 | 000012223334456688899999
##    8 | 00000001111222233333333333344455555555555666666666667777777788889999
##    9 | 00000000000000001111111122222222222222222333333344444444444444444445+74
##   10 | 00000000000000000111111111111111222222222222223333333333444444444444+37
##   11 | 00111111222222222222333344444444445556666677777788888889999
##   12 | 0000001111111122333444444555555666899
##   13 | 001112222344566667899
##   14 | 02244478999
##   15 | 1135
##   16 | 
##   17 | 
##   18 | 
##   19 | 
##   20 | 9
hist(df$Runtime)
hist(df$Runtime, breaks = 'Sturges')

hist(df$Runtime, breaks = 'Scott')

hist(df$Runtime, breaks = 'FD')

hist(df$Runtime, breaks = 'st')
hist(df$Runtime, breaks = 10)

hist(df$Runtime, col = 'gray', main = NULL, xlab = 'Size', ylim = c(0, 0.7), freq = FALSE)

density = density(df$Runtime)

density
## 
## Call:
##  density.default(x = df$Runtime)
## 
## Data: df$Runtime (584 obs.); Bandwidth 'bw' = 4.133
## 
##        x                 y            
##  Min.   : -8.399   Min.   :0.000e+00  
##  1st Qu.: 49.050   1st Qu.:8.663e-05  
##  Median :106.500   Median :1.971e-03  
##  Mean   :106.500   Mean   :4.347e-03  
##  3rd Qu.:163.950   3rd Qu.:3.869e-03  
##  Max.   :221.399   Max.   :2.645e-02
str(df)
## 'data.frame':    584 obs. of  6 variables:
##  $ Title     : chr  "Enter the Anime" "Dark Forces" "The App" "The Open House" ...
##  $ Genre     : chr  "Documentary" "Thriller" "Science fiction/Drama" "Horror thriller" ...
##  $ Premiere  : chr  "August 5, 2019" "August 21, 2020" "December 26, 2019" "January 19, 2018" ...
##  $ Runtime   : int  58 81 79 94 90 147 112 149 73 139 ...
##  $ IMDB.Score: num  2.5 2.6 2.6 3.2 3.4 3.5 3.7 3.7 3.9 4.1 ...
##  $ Language  : chr  "English/Japanese" "Spanish" "Italian" "English" ...
str(df$Runtime)
##  int [1:584] 58 81 79 94 90 147 112 149 73 139 ...
str(df$IMDB.Score)
##  num [1:584] 2.5 2.6 2.6 3.2 3.4 3.5 3.7 3.7 3.9 4.1 ...
dimnames(head(df))[[1]]
## [1] "1" "2" "3" "4" "5" "6"
dimnames(head(df))[[2]]
## [1] "Title"      "Genre"      "Premiere"   "Runtime"    "IMDB.Score"
## [6] "Language"
head(df, n = 7)
##               Title                 Genre          Premiere Runtime IMDB.Score
## 1   Enter the Anime           Documentary    August 5, 2019      58        2.5
## 2       Dark Forces              Thriller   August 21, 2020      81        2.6
## 3           The App Science fiction/Drama December 26, 2019      79        2.6
## 4    The Open House       Horror thriller  January 19, 2018      94        3.2
## 5       Kaali Khuhi               Mystery  October 30, 2020      90        3.4
## 6             Drive                Action  November 1, 2019     147        3.5
## 7 Leyla Everlasting                Comedy  December 4, 2020     112        3.7
##           Language
## 1 English/Japanese
## 2          Spanish
## 3          Italian
## 4          English
## 5            Hindi
## 6            Hindi
## 7          Turkish
rank(head(df))
##      Title      Genre   Premiere    Runtime IMDB.Score   Language       <NA> 
##       22.0       16.0       34.0       35.0       28.0       19.0       18.0 
##       <NA>       <NA>       <NA>       <NA>       <NA>       <NA>       <NA> 
##       36.0       32.0       25.0       29.0       13.0       15.0       14.0 
##       <NA>       <NA>       <NA>       <NA>       <NA>       <NA>       <NA> 
##       17.0       27.0       31.0       30.0        1.0        3.0        2.0 
##       <NA>       <NA>       <NA>       <NA>       <NA>       <NA>       <NA> 
##        5.0        4.0        6.0        7.0        8.5        8.5       10.0 
##       <NA>       <NA>       <NA>       <NA>       <NA>       <NA>       <NA> 
##       11.0       12.0       21.0       33.0       26.0       20.0       23.5 
##       <NA> 
##       23.5
rank(head(df$Runtime))
## [1] 1 3 2 5 4 6
rank(head(df$IMDB.Score))
## [1] 1.0 2.5 2.5 4.0 5.0 6.0
order(head(df$Runtime))
## [1] 1 3 2 5 4 6
order(head(df$IMDB.Score))
## [1] 1 2 3 4 5 6
search()
##  [1] ".GlobalEnv"        "df"                "package:stats"    
##  [4] "package:graphics"  "package:grDevices" "package:utils"    
##  [7] "package:datasets"  "package:methods"   "Autoloads"        
## [10] "package:base"
length(df)
## [1] 6
length(df$Title)
## [1] 584
length(df$Genre)
## [1] 584
length(df$Premiere)
## [1] 584
sin(head(df$Runtime))
## [1]  0.9928726 -0.6298880 -0.4441127 -0.2452520  0.8939967  0.6090440
sin(head(df$IMDB.Score))
## [1]  0.59847214  0.51550137  0.51550137 -0.05837414 -0.25554110 -0.35078323
cos(head(df$Runtime))
## [1]  0.1191801  0.7766860 -0.8959709  0.9694594 -0.4480736 -0.7931364
cos(head(df$IMDB.Score))
## [1] -0.8011436 -0.8568888 -0.8568888 -0.9982948 -0.9667982 -0.9364567
factorial(head(df$IMDB.Score))
## [1]  3.323351  3.717024  3.717024  7.756690 10.136102 11.631728
factorial(head(df$Runtime))
## [1]  2.350561e+78 5.797126e+120 8.946182e+116 1.087366e+146 1.485716e+138
## [6] 1.727246e+256
abs(head(df$IMDB.Score))
## [1] 2.5 2.6 2.6 3.2 3.4 3.5
abs(head(df$Runtime))
## [1]  58  81  79  94  90 147
sqrt(head(df$Runtime))
## [1]  7.615773  9.000000  8.888194  9.695360  9.486833 12.124356
sqrt(head(df$IMDB.Score))
## [1] 1.581139 1.612452 1.612452 1.788854 1.843909 1.870829
tan(head(df$Runtime))
## [1]  8.3308569 -0.8109944  0.4956775 -0.2529781 -1.9952004 -0.7678931
tan(head(df$IMDB.Score))
## [1] -0.74702230 -0.60159661 -0.60159661  0.05847385  0.26431690  0.37458564
asin(head(df$IMDB.Score))
## Warning in asin(head(df$IMDB.Score)): NaNs produced
## [1] NaN NaN NaN NaN NaN NaN
asin(head(df$Runtime))
## Warning in asin(head(df$Runtime)): NaNs produced
## [1] NaN NaN NaN NaN NaN NaN
ls()
## [1] "density" "df"      "df.mat"  "df1"
ls(pattern = 'da')
## character(0)
ls(pattern = 'p')
## character(0)
head(df[df > 7])
## [1] "Enter the Anime" "Dark Forces"     "The App"         "The Open House" 
## [5] "Kaali Khuhi"     "Drive"
head(df[df < 5 | df > 10], n = 10)
##  [1] "Enter the Anime"                 "Dark Forces"                    
##  [3] "The App"                         "The Open House"                 
##  [5] "Kaali Khuhi"                     "Drive"                          
##  [7] "Leyla Everlasting"               "The Last Days of American Crime"
##  [9] "Paradox"                         "Sardar Ka Grandson"
sort(head(df$Runtime), decreasing = TRUE)
## [1] 147  94  90  81  79  58
sort(head(df$IMDB.Score), decreasing = TRUE)
## [1] 3.5 3.4 3.2 2.6 2.6 2.5
sort(head(df$Runtime), na.last = NA)
## [1]  58  79  81  90  94 147
sort(head(df$IMDB.Score), na.last = NA)
## [1] 2.5 2.6 2.6 3.2 3.4 3.5
sort(head(df$IMDB.Score), na.last = TRUE)
## [1] 2.5 2.6 2.6 3.2 3.4 3.5
sort(head(df$Runtime), na.last = TRUE)
## [1]  58  79  81  90  94 147
sort(head(df$Runtime), na.last = FALSE)
## [1]  58  79  81  90  94 147
sort(head(df$IMDB.Score), na.last = FALSE)
## [1] 2.5 2.6 2.6 3.2 3.4 3.5
names(df)
## [1] "Title"      "Genre"      "Premiere"   "Runtime"    "IMDB.Score"
## [6] "Language"
mad(df$Runtime, na.rm = FALSE)
## [1] 16.3086
sd(df$Runtime)
## [1] 27.76168
sd(df$IMDB.Score)
## [1] 0.9792564
plot(df$IMDB.Score)

stem(df$IMDB.Score)
## 
##   The decimal point is at the |
## 
##   2 | 566
##   3 | 24
##   3 | 5779
##   4 | 1111223333444444
##   4 | 55556666666677777788888889999
##   5 | 00000111111222222222222222222233333333334444444444444
##   5 | 55555555555555555556666666666666667777777777777777777788888888888888+20
##   6 | 00000000000001111111111111111111111112222222222222222223333333333333+33
##   6 | 55555555555555555555555555666666666666666666777777777777777777777777+32
##   7 | 00000000000000000001111111111111111111111111111222222222222222222223+20
##   7 | 55555555556666666666777777778889999
##   8 | 01112222233444
##   8 | 56
##   9 | 0
stem(df$IMDB.Score, scale = 2)
## 
##   The decimal point is 1 digit(s) to the left of the |
## 
##   24 | 0
##   26 | 00
##   28 | 
##   30 | 
##   32 | 0
##   34 | 00
##   36 | 00
##   38 | 0
##   40 | 0000
##   42 | 000000
##   44 | 0000000000
##   46 | 00000000000000
##   48 | 00000000000
##   50 | 00000000000
##   52 | 00000000000000000000000000000
##   54 | 00000000000000000000000000000000
##   56 | 00000000000000000000000000000000000
##   58 | 0000000000000000000000000000000000000000000000
##   60 | 0000000000000000000000000000000000000
##   62 | 000000000000000000000000000000000000000000000000
##   64 | 000000000000000000000000000000000000000000000000000000
##   66 | 0000000000000000000000000000000000000000000
##   68 | 0000000000000000000000000000000000000000000
##   70 | 00000000000000000000000000000000000000000000000
##   72 | 00000000000000000000000000000000000000000
##   74 | 0000000000000000000000
##   76 | 000000000000000000
##   78 | 0000000
##   80 | 0000
##   82 | 0000000
##   84 | 0000
##   86 | 0
##   88 | 
##   90 | 0
hist(df$IMDB.Score)
hist(df$IMDB.Score, breaks = 'Sturges')

hist(df$IMDB.Score, breaks = 'Scott')
hist(df$IMDB.Score, breaks = 'FD')
hist(df$IMDB.Score, breaks = 'st')
hist(df$IMDB.Score, breaks = 10)
hist(df$IMDB.Score, col = 'blue', main = NULL, xlab = 'Size', ylim = c(0, 0.7), freq = FALSE)

density = density(df$IMDB.Score)

density
## 
## Call:
##  density.default(x = df$IMDB.Score)
## 
## Data: df$IMDB.Score (584 obs.);  Bandwidth 'bw' = 0.2442
## 
##        x               y            
##  Min.   :1.767   Min.   :0.0000316  
##  1st Qu.:3.759   1st Qu.:0.0070896  
##  Median :5.750   Median :0.0515213  
##  Mean   :5.750   Mean   :0.1254201  
##  3rd Qu.:7.741   3rd Qu.:0.2507274  
##  Max.   :9.733   Max.   :0.4088981
hist(df$IMDB.Score, col = 'green', main = NULL, xlab = 'Size', ylim = c(0, 0.7), freq = FALSE)

density = density(df$IMDB.Score)

density
## 
## Call:
##  density.default(x = df$IMDB.Score)
## 
## Data: df$IMDB.Score (584 obs.);  Bandwidth 'bw' = 0.2442
## 
##        x               y            
##  Min.   :1.767   Min.   :0.0000316  
##  1st Qu.:3.759   1st Qu.:0.0070896  
##  Median :5.750   Median :0.0515213  
##  Mean   :5.750   Mean   :0.1254201  
##  3rd Qu.:7.741   3rd Qu.:0.2507274  
##  Max.   :9.733   Max.   :0.4088981
table(df$Genre)
## 
##                               Action                     Action-adventure 
##                                    7                                    1 
##                      Action-thriller                        Action comedy 
##                                    3                                    5 
##                      Action thriller                        Action/Comedy 
##                                    1                                    1 
##               Action/Science fiction                            Adventure 
##                                    1                                    2 
##                    Adventure-romance                     Adventure/Comedy 
##                                    1                                    1 
##                Aftershow / Interview              Animated musical comedy 
##                                    6                                    1 
##                            Animation                   Animation / Comedy 
##                                    5                                    1 
##                 Animation / Musicial          Animation / Science Fiction 
##                                    1                                    1 
##                    Animation / Short Animation/Christmas/Comedy/Adventure 
##                                    4                                    1 
##           Animation/Comedy/Adventure          Animation/Musical/Adventure 
##                                    1                                    1 
##                  Animation/Superhero                        Anime / Short 
##                                    1                                    1 
##                        Anime/Fantasy                Anime/Science fiction 
##                                    1                                    2 
##                Anthology/Dark comedy                  Biographical/Comedy 
##                                    1                                    1 
##                               Biopic                         Black comedy 
##                                    9                                    2 
##                    Christian musical                     Christmas comedy 
##                                    1                                    1 
##                    Christmas musical   Christmas/Fantasy/Adventure/Comedy 
##                                    1                                    1 
##                               Comedy                         Comedy-drama 
##                                   49                                   14 
##                     Comedy / Musical                        Comedy horror 
##                                    2                                    1 
##                       Comedy mystery                Comedy/Fantasy/Family 
##                                    1                                    1 
##                        Comedy/Horror           Coming-of-age comedy-drama 
##                                    1                                    1 
##                         Concert Film                          Crime drama 
##                                    6                                   11 
##                       Crime thriller                         Dance comedy 
##                                    1                                    1 
##                          Dark comedy                          Documentary 
##                                    2                                  159 
##                                Drama                         Drama-Comedy 
##                                   77                                    1 
##                        Drama / Short                         Drama/Horror 
##                                    1                                    1 
##                               Family                          Family film 
##                                    2                                    2 
##             Family/Christmas musical                  Family/Comedy-drama 
##                                    1                                    1 
##                              Fantasy                                Heist 
##                                    1                                    1 
##                  Heist film/Thriller           Hidden-camera prank comedy 
##                                    1                                    1 
##                      Historical-epic                     Historical drama 
##                                    1                                    1 
##                               Horror                      Horror-thriller 
##                                    9                                    2 
##                     Horror anthology                        Horror comedy 
##                                    1                                    1 
##                      Horror thriller                   Horror/Crime drama 
##                                    3                                    1 
##                            Making-of                    Mentalism special 
##                                    2                                    1 
##                         Mockumentary                              Musical 
##                                    2                                    2 
##                      Musical / Short                       Musical comedy 
##                                    1                                    2 
##              Musical/Western/Fantasy                              Mystery 
##                                    1                                    2 
##                         One-man show                   Political thriller 
##                                    3                                    1 
##                 Psychological horror               Psychological thriller 
##                                    1                                    4 
##         Psychological thriller drama                              Romance 
##                                    1                                    6 
##                        Romance drama                      Romantic comedy 
##                                    1                                   39 
##                Romantic comedy-drama              Romantic comedy/Holiday 
##                                    1                                    1 
##                       Romantic drama                  Romantic teen drama 
##                                    5                                    1 
##               Romantic teenage drama                    Romantic thriller 
##                                    1                                    1 
##                               Satire                      Science fiction 
##                                    2                                    4 
##            Science fiction adventure             Science fiction thriller 
##                                    1                                    1 
##               Science fiction/Action                Science fiction/Drama 
##                                    1                                    3 
##              Science fiction/Mystery             Science fiction/Thriller 
##                                    1                                    4 
##                         Sports-drama                          Sports film 
##                                    3                                    1 
##                         Spy thriller                          Stop Motion 
##                                    2                                    1 
##                            Superhero                     Superhero-Comedy 
##                                    2                                    1 
##                     Superhero/Action                   Supernatural drama 
##                                    1                                    1 
##                    Teen comedy-drama                   Teen comedy horror 
##                                    1                                    1 
##                             Thriller                        Urban fantasy 
##                                   33                                    1 
##                         Variety show                         Variety Show 
##                                    4                                    1 
##                                  War                           War-Comedy 
##                                    2                                    1 
##                            War drama                              Western 
##                                    2                                    3 
##                         Zombie/Heist 
##                                    1
table(df$Language)
## 
##                    Bengali                      Dutch 
##                          1                          3 
##                    English               English/Akan 
##                        401                          1 
##             English/Arabic              English/Hindi 
##                          1                          2 
##           English/Japanese             English/Korean 
##                          2                          1 
##           English/Mandarin            English/Russian 
##                          2                          1 
##            English/Spanish            English/Swedish 
##                          5                          1 
## English/Taiwanese/Mandarin   English/Ukranian/Russian 
##                          1                          1 
##                   Filipino                     French 
##                          2                         20 
##                   Georgian                     German 
##                          1                          5 
##                      Hindi                 Indonesian 
##                         33                          9 
##                    Italian                   Japanese 
##                         14                          6 
##       Khmer/English/French                     Korean 
##                          1                          6 
##                      Malay                    Marathi 
##                          1                          3 
##                  Norwegian                     Polish 
##                          1                          3 
##                 Portuguese                    Spanish 
##                         12                         31 
##             Spanish/Basque            Spanish/Catalan 
##                          1                          1 
##            Spanish/English                    Swedish 
##                          1                          1 
##                      Tamil                       Thai 
##                          1                          2 
##               Thia/English                    Turkish 
##                          1                          5
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(gcookbook)

temp=df %>% filter(df$Language=="French" & df$Genre == "War")
temp
## [1] Title      Genre      Premiere   Runtime    IMDB.Score Language  
## <0 rows> (or 0-length row.names)
english=df %>% filter(df$Language=="English")
english
##                                                                                                          Title
## 1                                                                                               The Open House
## 2                                                                              The Last Days of American Crime
## 3                                                                                                      Paradox
## 4                                                                                         Searching for Sheela
## 5                                                                                                        Mercy
## 6                                                                                     The Last Thing He Wanted
## 7                                                                                                   Death Note
## 8                                                                            Hello Privilege. It's Me, Chelsea
## 9                                                                                             Secret Obsession
## 10                                                                                                  Sextuplets
## 11                                                                                               Thunder Force
## 12                                                                                                Fatal Affair
## 13                                                                                            Seriously Single
## 14                                                               I Am the Pretty Thing That Lives in the House
## 15                                                                                                 Rattlesnake
## 16                                                                                                          IO
## 17                                                                                                 Sol Levante
## 18                                                                                            We Can Be Heroes
## 19                                                                                                  Coin Heist
## 20                                                                                                 Take the 10
## 21                                                                                              The Main Event
## 22                                                                                            The Ridiculous 6
## 23                                                                                                    Fearless
## 24                                                                                                Holiday Rush
## 25                                                                                                 How It Ends
## 26                                                                                                     Rebirth
## 27                                                                                                    Clinical
## 28                                                                                             Coffee & Kareem
## 29                                                                                                        Dude
## 30                                                                                      The Larva Island Movie
## 31                                                                                                #REALITYHIGH
## 32                                                           American Factory: A Conversation with the Obamas 
## 33                                                                                                  Desperados
## 34                                                                      Dolly Parton's Christmas on the Square
## 35                                                                                          Father of the Year
## 36                                                                                            Girlfriend's Day
## 37                                                                           Handsome: A Netflix Mystery Movie
## 38                                                                                             Hubie Halloween
## 39                                                                                                       Ibiza
## 40                                                                                            Rim of the World
## 41                                                                                                Sandy Wexler
## 42                                                                                           See You Yesterday
## 43                                                                         Still Laugh-In: The Stars Celebrate
## 44                                                                                         Strip Down, Rise Up
## 45                                                                                                   Tall Girl
## 46                                                                                                 The Week Of
## 47                                                                       A Christmas Prince: The Royal Wedding
## 48                                                                                              Dangerous Lies
## 49                                                                                         Things Heard & Seen
## 50                                                                                                        XOXO
## 51                                                                     A Babysitter's Guide to Monster Hunting
## 52                                                                          A Christmas Prince: The Royal Baby
## 53                                                                                             Game Over, Man!
## 54                                                                                           In the Tall Grass
## 55                                                                                                       Naked
## 56                                                                                            Outside the Wire
## 57                                                                         The Princess Switch: Switched Again
## 58                                                                                     A Very Murray Christmas
## 59                                                                                                Been So Long
## 60                                                                                        Ghosts of Sugar Land
## 61                                                                         Kevin Hart's Guide to Black History
## 62                                                                                         Love Wedding Repeat
## 63                                                                                                        Mute
## 64                                                                                                     Òlòt?ré
## 65                                                                                                Step Sisters
## 66                                                                                     The Cloverfield Paradox
## 67                                                                                 The Knight Before Christmas
## 68                                                                       The Legacy of a Whitetail Deer Hunter
## 69                                                                                                 The Package
## 70                                                                                               Unicorn Store
## 71                                                                                                Wine Country
## 72                                                                                               Brahman Naman
## 73                                                                                            Falling Inn Love
## 74                                                                                               Hold the Dark
## 75                                                                                            Love, Guaranteed
## 76                                                                             Sarah Cooper: Everything's Fine
## 77                                                                                              The Last Laugh
## 78                                                                                            The Midnight Sky
## 79                                                                                               The Sleepover
## 80                                                                                      Vampires vs. the Bronx
## 81                                                                                        Why Did You Kill Me?
## 82                                                                                                 A Week Away
## 83                                                                                       Christmas Inheritance
## 84                                                                                         El Camino Christmas
## 85                                                                                                         Eli
## 86                                                                                                    Good Sam
## 87                                                                                                   Lionheart
## 88                                                                                                 Little Evil
## 89                                                                                            Out of Many, One
## 90                                                                                                 Point Blank
## 91                                                                                                 The Do-Over
## 92                                                                                        The Holiday Calendar
## 93                                                                                     The Woman in the Window
## 94                                                                                             The Wrong Missy
## 95                                                                                              Velvet Buzzsaw
## 96                                                                                                     Yes Day
## 97                                                                                      A California Christmas
## 98                                                                                          A Christmas Prince
## 99                                                                                         All Day and a Night
## 100                                                                                               American Son
## 101                                                                                                      Barry
## 102                                                                                                  Candy Jar
## 103                                                                                                 Extinction
## 104                                                                                          Happy Anniversary
## 105                                                                                             I Am All Girls
## 106                                                                                                Let It Snow
## 107                                                                                                    Mascots
## 108                                                                                   Operation Christmas Drop
## 109                                                                                                Rodney King
## 110                                                                                  Sierra Burgess Is a Loser
## 111                                                                                               Small Crimes
## 112                                                                                     Special Correspondents
## 113                                                                                                        TAU
## 114                                                                                            The After Party
## 115                                                                               The Babysitter: Killer Queen
## 116                                                                                        The Kissing Booth 2
## 117                                                                                           The Perfect Date
## 118                                                                                                 6 Balloons
## 119                                                                                          A Fall from Grace
## 120                                                                                                    Amateur
## 121                                                                                           Army of the Dead
## 122                                                                                                        Cam
## 123                                                                                            Earthquake Bird
## 124                                                             Frankenstein's Monster's Monster, Frankenstein
## 125                                                                                                 Horse Girl
## 126                                                         Notes from Dunblane: Lesson from a School Shooting
## 127                                                                               The Minimalists: Less Is Now
## 128                                                                                             The Polka King
## 129                                                                                                   The Prom
## 130                                                                  True Memoirs of an International Assassin
## 131                                                                                                Come Sunday
## 132                                                                                                       iBoy
## 133                                                                                                    Juanita
## 134                                                                                             Murder Mystery
## 135                                                                                              Project Power
## 136                                                                                                    Rebecca
## 137                                                                         The Christmas Chronicles: Part Two
## 138                                                                                          The Kissing Booth
## 139                                                                                        The Princess Switch
## 140                                                                     To All the Boys: P.S. I Still Love You
## 141                                                                                                War Machine
## 142                                                                                              6 Underground
## 143                                                                               Between Two Ferns: The Movie
## 144                                                                                              Burning Sands
## 145                                                                                           Casting JonBenet
## 146                                                                                 Deidra & Laney Rob a Train
## 147                                                                                             Finding 'Ohana
## 148                                                                                                   Holidate
## 149                                                                                        Holiday in the Wild
## 150                                                                                           Hot Girls Wanted
## 151                                                                                                Like Father
## 152                                                                                                 Lost Girls
## 153                                                                                                  Otherhood
## 154                                                                                      Pee-wee's Big Holiday
## 155                                                                                                     Sergio
## 156                                                                                              The Lovebirds
## 157                                                                            The Most Hated Woman in America
## 158                                                                                             The Perfection
## 159                                                                                                    Work It
## 160                                                                                                 Alien Xmas
## 161                                                                                                   Citation
## 162                                                                                           High Flying Bird
## 163                                                                                  In the Shadow of the Moon
## 164                                                                         Octonauts & the Caves of Sac Actun
## 165                                                                                            Roxanne Roxanne
## 166                                                                                              Someone Great
## 167                                                                                       Spenser Confidential
## 168                                                                                  The Land of Steady Habits
## 169                                                                                          The Rachel Divide
## 170                                                                                                    Voyuer 
## 171                                                                                                 Win It All
## 172                                                                                                       1922
## 173                                                                                           Alex Strangelove
## 174                                                                                                    Apostle
## 175                                                                                                      Benji
## 176                                                                                                     Bright
## 177                                                                                                      Cargo
## 178                                                                                            Concrete Cowboy
## 179                                                                                              Feel the Beat
## 180                                                                                       Nail Bomber: Manhunt
## 181                                                                                                      Polar
## 182                                                                                                Sand Castle
## 183                                                                                               Shimmer Lake
## 184                                                                                                   Spectral
## 185                                                                                             The Babysitter
## 186                                                                                              The Discovery
## 187                                                                                             The Laundromat
## 188                                                                               The Legend of Cocaine Island
## 189                                                                        To All the Boys: Always and Forever
## 190                                                                           Travis Scott: Look Mom I Can Fly
## 191                                                                                                   Uncorked
## 192                                                                       Ariana Grande: Excuse Me, I Love You
## 193                                                                                                        ARQ
## 194                                                                                                First Match
## 195                                                                                                  Fractured
## 196                                                                                          Irreplaceable You
## 197                                                                          John Was Trying to Contact Aliens
## 198                                                                   Murder to Mercy: The Cyntoia Brown Story
## 199                                                                                                 My Own Man
## 200                                                                                         Nappily Ever After
## 201                                                                                              Over the Moon
## 202                                                                                              Strong Island
## 203                                                                    Sturgill Simpson Presents: Sound & Fury
## 204                                                                                            Take Your Pills
## 205                                                                                        The Mars Generation
## 206                                                                                            The Willoughbys
## 207                                                                                            Triple Frontier
## 208                                                                                         Walk. Ride. Rodeo.
## 209                                                                                                   Wheelman
## 210                                                                                          When We First Met
## 211                                                                                      All the Bright Places
## 212                                                                                           All Together Now
## 213                                                                                                    Canvas 
## 214                                                                    Chadwick Boseman: Portrait of an Artist
## 215                                                                                                Da 5 Bloods
## 216                                                                          Dolly Parton: A MusiCares Tribute
## 217                                                            Eurovision Song Contest: The Story of Fire Saga
## 218                                                                                              Gerald's Game
## 219                                                                                                  His House
## 220                                                                         Jingle Jangle: A Christmas Journey
## 221                                                                                                    Monster
## 222                                                                               Mowgli: Legend of the Jungle
## 223                                                                     Nobody Speak: Trials of the Free Press
## 224                                                                                                  Set It Up
## 225                                                                               The Incredible Jessica James
## 226                                                                                                     Tramps
## 227                                                                                          What Did Jack Do?
## 228                                                                                                   Bad Trip
## 229                                                                                                   Bird Box
## 230                                                                                   I'll Sleep When I'm Dead
## 231                                                                              I'm Thinking of Ending Things
## 232                                                                                         It Takes a Lunatic
## 233                                                                                              Recovery Boys
## 234                                                                     ReMastered: Who Killed Jam Master Jay?
## 235                                                                                    Shawn Mendes: In Wonder
## 236                                                                                          The American Meme
## 237                                                                                                  The Angel
## 238                                                                                  The Red Sea Diving Resort
## 239                                                                                What Would Sophia Loren Do?
## 240                                                                                     Arlo the Alligator Boy
## 241                                                                               Bikram: Yogi, Guru, Predator
## 242                                                                                               Blue Miracle
## 243                                                                                              CounterPunch 
## 244                                                                    Crack: Cocaine, Corruption & Conspiracy
## 245                                                                                                 Extraction
## 246                                                                                               Giving Voice
## 247                                                                                            Hillbilly Elegy
## 248                                                                                            Imperial Dreams
## 249                                                                                            Malcolm & Marie
## 250                                                        Michael Bolton's Big, Sexy, Valentine's Day Special
## 251                                                                                                      Moxie
## 252                                                                                                   Tallulah
## 253                                                                                              The Old Guard
## 254                                                                           Tony Robbins: I Am Not Your Guru
## 255                                                                                                    22 July
## 256                                                                                A Futile and Stupid Gesture
## 257                                                                                    A Love Song for Latasha
## 258                                                                                         Always Be My Maybe
## 259                                                                                                   Becoming
## 260                                                                                                    Calibre
## 261                                                                                              Death to 2020
## 262                                                               Have a Good Trip: Adventures in Psychedelics
## 263                                                                                                 Heroin(e) 
## 264                                                                                                 Mercury 13
## 265                                                                                          Saving Capitalism
## 266                                                                                       The Boys in the Band
## 267                                                                   The Boys in the Band: Something Personal
## 268                                                                                 The Other Side of the Wind
## 269                                                                                                To the Bone
## 270                                                                                                Amanda Knox
## 271                                                                              Biggie: I Got a Story to Tell
## 272                                                                                           Cops and Robbers
## 273                                                                 I Don't Feel at Home in This World Anymore
## 274                                                                                                       Mank
## 275                                                                                         Our Souls at Night
## 276                                                                                                Outlaw King
## 277                                                                          ReMastered: Who Shot the Sheriff?
## 278                                                                                              Seeing Allred
## 279                                                                                         Spelling the Dream
## 280                                                                                     The Claudia Kishi Club
## 281                                                                                             The Half of It
## 282                                                                                             The Highwaymen
## 283                                      The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 284                                                                  The Meyerowitz Stories (New and Selected)
## 285                                                                        Feminists: What Were They Thinking?
## 286                                                                                        Gaga: Five Foot Two
## 287                                I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 288                                                                                              Kingdom of Us
## 289                                                                                   Ma Rainey's Black Bottom
## 290                                                       Ma Rainey's Black Bottom: A Legacy Brought to Screen
## 291                                                    Operation Varsity Blues: The College Admissions Scandal
## 292                                                                                                       Pele
## 293                                                                        ReMastered: Devil at the Crossroads
## 294                                                                               ReMastered: The Lion's Share
## 295                                                                    ReMastered: The Miami Showband Massacre
## 296                                                                                                  Resurface
## 297                                                                          Rocko's Modern Life: Static Cling
## 298                                                                                   The Christmas Chronicles
## 299                                                                                                   The Dirt
## 300                                                     13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 301                                                                                         Angela's Christmas
## 302                                                                                    Angela's Christmas Wish
## 303                                                                                                      Beats
## 304                                                                                            Circus of Books
## 305                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 306                                                                                    Derren Brown: Sacrifice
## 307                                                                                                   End Game
## 308                                                                                                     Evelyn
## 309                                                                                           Grass Is Greener
## 310                                                                            Joshua: Teenager vs. Superpower
## 311                                                                        Keith Richards: Under the Influence
## 312                                                                                       Knock Down the House
## 313                                                                      Loudon Wainwright III: Surviving Twin
## 314                                                                                  My Beautiful Broken Brain
## 315                                                                                                  One of Us
## 316                                                                                          Pieces of a Woman
## 317                                                                                       Ram Dass, Going Home
## 318                                                                 ReMastered: Tricky Dick & the Man in Black
## 319                                                                                     The Devil All the Time
## 320                                                                                                    The Dig
## 321                                                                                             The Great Hack
## 322                                                                                            The White Tiger
## 323                                                                          To All the Boys I've Loved Before
## 324                                                                      American Murder: The Family Next Door
## 325                                                                                             Audrie & Daisy
## 326                                                               Fyre: The Greatest Party That Never Happened
## 327                                                                                           Into the Inferno
## 328                                                                                               LA Originals
## 329                                                                                                  Paddleton
## 330                                                                                               Private Life
## 331                                                                                    The 40-Year-Old Version
## 332                                                                                                   The King
## 333                                                                The Road to El Camino: A Breaking Bad Movie
## 334                                                                                    The Siege of Jadotville
## 335                                                                                                      Zion 
## 336                                                                                        Dolemite Is My Name
## 337                                                                            El Camino: A Breaking Bad Movie
## 338                                                                                                   Extremis
## 339                                                                                         Father Soldier Son
## 340                                                                                         Get Me Roger Stone
## 341                                                                         Octonauts & the Great Barrier Reef
## 342                                                                  ReMastered: The Two Killings of Sam Cooke
## 343                                                                                    Sitara: Let Girls Dream
## 344                                                                               The Ballad of Buster Scruggs
## 345                                                                    The Death and Life of Marsha P. Johnson
## 346                                                                                 The Fundamentals of Caring
## 347                                                           The Other One: The Long Strange Trip of Bob Weir
## 348                                                                                           American Factory
## 349                                                                                           Fire in Paradise
## 350                                                                                                  Long Shot
## 351                                                                                             Miss Americana
## 352                                                                              Shawn Mendes: Live in Concert
## 353                                                                                                   Shirkers
## 354                                                                                        The Black Godfather
## 355                                                                              The Irishman: In Conversation
## 356                                                                                           The Speed Cubers
## 357                                                                              They'll Love Me When I'm Dead
## 358                                                                                                        Tig
## 359                                                                Barbra: The Music, The Mem'ries, The Magic!
## 360                                                                                                City of Joy
## 361                                                                                       Dick Johnson Is Dead
## 362                                                                             Homecoming: A Film by Beyonce 
## 363                                                                             Invader Zim: Enter the Florpus
## 364                                                                      Joan Didion: The Center Will Not Hold
## 365                                                                        John Mulaney & the Sack Lunch Bunch
## 366                                                                                              Reversing Roe
## 367                                                                                          The White Helmets
## 368                                                                                                  Athlete A
## 369                                                                                                     Quincy
## 370                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 371                                                                                           Tell Me Who I Am
## 372                                                                                          The Bleeding Edge
## 373                                                                                         The Social Dilemma
## 374                                                                                              The Two Popes
## 375                                                                                What Happened, Miss Simone?
## 376                                                                                                      Anima
## 377                                                                           Brene Brown: The Call to Courage
## 378                                                                         Crip Camp: A Disability Revolution
## 379 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 380                                                                     Justin Timberlake + The Tennessee Kids
## 381                                                                             If Anything Happens I Love You
## 382                                                                                               The Irishman
## 383                                                                                 The Trial of the Chicago 7
## 384                                                                                              A Secret Love
## 385                                                                                                     Icarus
## 386                                                                                             Marriage Story
## 387                                                                                             The Ivory Game
## 388                                                               Struggle: The Life and Lost Art of Szukaiski
## 389                                                                                             Chasing Coral 
## 390                                                                                         My Octopus Teacher
## 391                                                                                             Rising Phoenix
## 392                                                                                                       13th
## 393                                                                          Disclosure: Trans Lives on Screen
## 394                                                                                                      Klaus
## 395                                                                                                 Seaspiracy
## 396                                                                                    Cuba and the Cameraman 
## 397                                                                                     Dancing with the Birds
## 398                                                                 Ben Platt: Live from Radio City Music Hall
## 399                                                                      Taylor Swift: Reputation Stadium Tour
## 400                                                                                    Springsteen on Broadway
## 401                                                                   David Attenborough: A Life on Our Planet
##                                    Genre           Premiere Runtime IMDB.Score
## 1                        Horror thriller   January 19, 2018      94        3.2
## 2                    Heist film/Thriller       June 5, 2020     149        3.7
## 3                Musical/Western/Fantasy     March 23, 2018      73        3.9
## 4                            Documentary     April 22, 2021      58        4.1
## 5                               Thriller  November 22, 2016      90        4.2
## 6                     Political thriller  February 21, 2020     115        4.3
## 7                        Horror thriller    August 25, 2017     100        4.4
## 8                            Documentary September 13, 2019      64        4.4
## 9                               Thriller      July 18, 2019      97        4.4
## 10                                Comedy    August 16, 2019      99        4.4
## 11                      Superhero-Comedy      April 9, 2021     105        4.4
## 12                              Thriller      July 16, 2020      89        4.5
## 13                                Comedy      July 31, 2020     107        4.5
## 14                                Horror   October 28, 2016      89        4.6
## 15                                Horror   October 25, 2019      85        4.6
## 16                 Science fiction/Drama   January 18, 2019      95        4.7
## 17                         Anime / Short      April 2, 2020       4        4.7
## 18                             Superhero  December 25, 2020     100        4.7
## 19                                 Heist    January 6, 2017      97        4.8
## 20                                Comedy   January 20, 2017      80        4.8
## 21                                Comedy     April 10, 2020     101        4.8
## 22                               Western  December 11, 2015     119        4.8
## 23                   Animation/Superhero    August 14, 2020      89        4.9
## 24                           Family film  November 28, 2019      94        4.9
## 25                       Action-thriller      July 13, 2018     113        5.0
## 26                              Thriller      July 15, 2016     100        5.0
## 27                              Thriller   January 13, 2017     104        5.1
## 28                         Action comedy      April 3, 2020      88        5.1
## 29                     Teen comedy-drama     April 20, 2018      97        5.1
## 30                             Animation      July 23, 2020      90        5.1
## 31                                Comedy  September 8, 2017      99        5.2
## 32                 Aftershow / Interview    August 21, 2019      10        5.2
## 33                       Romantic comedy       July 3, 2020     106        5.2
## 34                     Christmas musical  November 22, 2020      98        5.2
## 35                                Comedy      July 20, 2018      94        5.2
## 36                                Comedy  February 14, 2017      70        5.2
## 37                                Comedy        May 5, 2017      81        5.2
## 38                                Comedy    October 7, 2020     103        5.2
## 39                                Comedy       May 25, 2018      94        5.2
## 40             Science fiction adventure       May 24, 2019      98        5.2
## 41                                Comedy     April 14, 2017     131        5.2
## 42                       Science fiction       May 17, 2019      87        5.2
## 43                          Variety show       May 14, 2019      60        5.2
## 44                           Documentary   February 5, 2021     112        5.2
## 45                          Comedy-drama September 13, 2019     102        5.2
## 46                                Comedy     April 27, 2018     116        5.2
## 47                       Romantic comedy  November 30, 2018      92        5.3
## 48                              Thriller     April 30, 2020      97        5.3
## 49                                Horror     April 29, 2021     121        5.3
## 50                                 Drama    August 26, 2016      92        5.3
## 51                 Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 52                       Romantic comedy   December 5, 2019      85        5.4
## 53                         Action/Comedy     March 23, 2018     101        5.4
## 54                                Horror    October 4, 2019     101        5.4
## 55                                Comedy    August 11, 2017      96        5.4
## 56                Action/Science fiction   January 15, 2021     114        5.4
## 57                       Romantic comedy  November 19, 2020      97        5.4
## 58                      Comedy / Musical   December 4, 2015      56        5.5
## 59                               Musical   October 26, 2018     100        5.5
## 60                           Documentary   October 16. 2019      21        5.5
## 61                          Variety show   February 8, 2019      63        5.5
## 62                       Romantic comedy     April 10, 2020     100        5.5
## 63               Science fiction/Mystery  February 23, 2018     126        5.5
## 64                           Crime drama    October 2, 2020     106        5.5
## 65                                Comedy   January 19, 2018     108        5.5
## 66                       Science fiction   February 4, 2018     102        5.5
## 67                       Romantic comedy  November 21, 2019      92        5.5
## 68                      Adventure/Comedy       July 6, 2018      83        5.5
## 69                          Black comedy    August 10, 2018      94        5.5
## 70                                Comedy      April 5, 2019      92        5.5
## 71                                Comedy       May 10, 2019     103        5.5
## 72                                Comedy       July 7, 2016      95        5.6
## 73                       Romantic comedy    August 29, 2019      97        5.6
## 74                              Thriller September 28, 2018     125        5.6
## 75                       Romantic comedy  September 3, 2020      91        5.6
## 76                          Variety show   October 27, 2020      49        5.6
## 77                          Comedy-drama   January 11, 2019      98        5.6
## 78                       Science fiction  December 23, 2020     118        5.6
## 79                                Comedy    August 21, 2020     103        5.6
## 80                         Horror comedy    October 2, 2020      86        5.6
## 81                           Documentary     April 14, 2021      83        5.6
## 82                     Christian musical     March 26, 2021      97        5.7
## 83                        Romantic drama  December 15, 2017     104        5.7
## 84                           Dark comedy   December 8, 2017      89        5.7
## 85                                Horror   October 18, 2019      98        5.7
## 86                                 Drama       May 16, 2019      89        5.7
## 87                                Comedy    January 4, 2019      94        5.7
## 88                         Comedy horror  September 1, 2017      94        5.7
## 89                           Documentary  December 12, 2018      34        5.7
## 90                                Action      July 12, 2019      86        5.7
## 91                         Action comedy       May 27, 2016     108        5.7
## 92                       Romantic comedy   November 2, 2018      95        5.7
## 93                Psychological thriller       May 14, 2021     100        5.7
## 94                                Comedy       May 13, 2020      90        5.7
## 95                              Thriller   February 1, 2019     112        5.7
## 96                                Comedy     March 12, 2021      86        5.7
## 97                       Romantic comedy  December 14, 2020     107        5.8
## 98                       Romantic comedy  November 17, 2017      92        5.8
## 99                                 Drama        May 1, 2020     121        5.8
## 100                                Drama   November 1, 2019      90        5.8
## 101                               Biopic  December 16, 2016     104        5.8
## 102                               Comedy     April 27, 2018      92        5.8
## 103             Science fiction/Thriller      July 27, 2018      95        5.8
## 104                      Romantic comedy     March 30, 2018      78        5.8
## 105                             Thriller       May 14, 2021     107        5.8
## 106                      Romantic comedy   November 8, 2019      92        5.8
## 107                         Mockumentary   October 13, 2016      95        5.8
## 108                      Romantic comedy   November 5, 2020      96        5.8
## 109                         One-man show     April 28, 2017      52        5.8
## 110                Romantic comedy-drama  September 7, 2018     105        5.8
## 111                          Dark comedy     April 28, 2017      95        5.8
## 112                               Satire     April 29, 2016     100        5.8
## 113             Science fiction/Thriller      June 29, 2018      97        5.8
## 114                               Comedy    August 24, 2018      89        5.8
## 115                        Comedy/Horror September 10, 2020     102        5.8
## 116                      Romantic comedy      July 24, 2020     131        5.8
## 117                      Romantic comedy     April 12, 2019      89        5.8
## 118                                Drama      April 6, 2018      75        5.9
## 119                             Thriller   January 17, 2020     120        5.9
## 120                         Sports-drama      April 6, 2018      96        5.9
## 121                         Zombie/Heist       May 21, 2021     148        5.9
## 122                 Psychological horror  November 16, 2018      94        5.9
## 123                              Mystery  November 15, 2019     107        5.9
## 124                         Mockumentary      July 16, 2019      32        5.9
## 125                                Drama   February 7, 2020     104        5.9
## 126                          Documentary September 28, 2018      23        5.9
## 127                          Documentary    January 1, 2021      53        5.9
## 128                         Comedy-drama   January 12, 2018      95        5.9
## 129                              Musical  December 11, 2020     132        5.9
## 130                        Action comedy  November 11, 2016      98        5.9
## 131                               Biopic     April 13, 2018     106        6.0
## 132             Science fiction/Thriller   January 27, 2017      90        6.0
## 133                                Drama      March 8, 2019      90        6.0
## 134                       Comedy mystery      June 14, 2019      97        6.0
## 135                            Superhero    August 14, 2020     113        6.0
## 136                    Romantic thriller   October 21, 2020     123        6.0
## 137                     Christmas comedy  November 25, 2020     115        6.0
## 138                      Romantic comedy       May 11, 2018     105        6.0
## 139                      Romantic comedy  November 16, 2018     101        6.0
## 140                      Romantic comedy  February 12, 2020     102        6.0
## 141                           War-Comedy       May 26, 2017     122        6.0
## 142                               Action  December 13, 2019     128        6.1
## 143                               Comedy September 20, 2019      82        6.1
## 144                                Drama     March 10, 2017     102        6.1
## 145                          Documentary     April 28, 2017      80        6.1
## 146                                Drama     March 17, 2017      94        6.1
## 147                               Family   January 29, 2021     123        6.1
## 148              Romantic comedy/Holiday   October 28, 2020     104        6.1
## 149                    Adventure-romance   November 1, 2019      85        6.1
## 150                          Documentary       May 29, 2015      84        6.1
## 151                               Comedy     August 3, 2018     103        6.1
## 152                          Crime drama     March 13, 2020      95        6.1
## 153                               Comedy     August 2, 2019     100        6.1
## 154                            Adventure     March 18, 2016      89        6.1
## 155                               Biopic     April 17, 2020     118        6.1
## 156                      Romantic comedy       May 22, 2020      87        6.1
## 157                               Biopic     March 24, 2017      92        6.1
## 158                      Horror-thriller       May 24, 2019      90        6.1
## 159                         Dance comedy     August 7, 2020      93        6.1
## 160                          Stop Motion  November 20, 2020      42        6.2
## 161                                Drama   November 6, 2020     151        6.2
## 162                         Sports-drama   February 8, 2019      90        6.2
## 163                             Thriller September 27, 2019     115        6.2
## 164                            Animation    August 14, 2020      72        6.2
## 165                               Biopic     March 23, 2018      98        6.2
## 166                      Romantic comedy     April 19, 2019      92        6.2
## 167                        Action comedy      March 6, 2020     111        6.2
## 168                                Drama September 14, 2018      98        6.2
## 169                          Documentary     April 27, 2018     104        6.2
## 170                          Documentary   December 1, 2017      95        6.2
## 171                               Comedy      April 7, 2017      88        6.2
## 172                   Horror/Crime drama   October 20, 2017     102        6.3
## 173                      Romantic comedy       June 8, 2018      99        6.3
## 174                      Horror-thriller   October 12, 2018     129        6.3
## 175                          Family film     March 16, 2018      87        6.3
## 176                        Urban fantasy  December 22, 2017     117        6.3
## 177                         Drama/Horror       May 18, 2018     104        6.3
## 178                                Drama      April 2, 2021     111        6.3
## 179                  Family/Comedy-drama      June 19, 2020     107        6.3
## 180                          Documentary       May 26, 2021      72        6.3
## 181                               Action   January 25, 2019     118        6.3
## 182                                  War     April 21, 2017     113        6.3
## 183                       Crime thriller       June 9, 2017      86        6.3
## 184               Science fiction/Action   December 9, 2016     108        6.3
## 185                   Teen comedy horror   October 13, 2017      85        6.3
## 186                Science fiction/Drama     March 31, 2017     102        6.3
## 187                         Comedy-drama   October 18, 2019      98        6.3
## 188                          Documentary     March 29, 2019      87        6.3
## 189                      Romantic comedy  February 12, 2021     109        6.3
## 190                          Documentary    August 28, 2019      85        6.3
## 191                                Drama     March 27, 2020     103        6.3
## 192                         Concert Film  December 21, 2020      97        6.4
## 193             Science fiction/Thriller September 16, 2016      88        6.4
## 194                         Sports-drama     March 30, 2018     102        6.4
## 195                             Thriller   October 11, 2019     100        6.4
## 196                                Drama  February 16, 2018      96        6.4
## 197                          Documentary    August 20, 2020      16        6.4
## 198                          Documentary     April 29, 2020      97        6.4
## 199                          Documentary  December 13, 2014      81        6.4
## 200                         Comedy-drama September 21, 2018      98        6.4
## 201          Animation/Musical/Adventure   October 23, 2020      95        6.4
## 202                          Documentary September 15. 2017     107        6.4
## 203                 Animation / Musicial September 27, 2019      41        6.4
## 204                          Documentary     March 16, 2018      87        6.4
## 205                          Documentary        May 5, 2017      97        6.4
## 206           Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 207                      Action-thriller     March 13, 2019     125        6.4
## 208                                Drama      March 8, 2019      99        6.4
## 209                      Action thriller   October 20, 2017      82        6.4
## 210                      Romantic comedy   February 9, 2018      97        6.4
## 211                              Romance  February 28, 2020     108        6.5
## 212                                Drama    August 28, 2020      93        6.5
## 213                    Animation / Short  December 11, 2020       9        6.5
## 214                          Documentary     April 17, 2021      21        6.5
## 215                            War drama      June 12, 2020     155        6.5
## 216                          Documentary      April 7, 2021      55        6.5
## 217                       Musical comedy      June 26, 2020     123        6.5
## 218                      Horror thriller September 29, 2017     103        6.5
## 219                             Thriller   October 30, 2020      93        6.5
## 220             Family/Christmas musical  November 13, 2020     119        6.5
## 221                                Drama        May 7, 2021      98        6.5
## 222                            Adventure   December 7, 2018     104        6.5
## 223                          Documentary      June 23, 2017      95        6.5
## 224                      Romantic comedy      June 15, 2018     105        6.5
## 225                               Comedy      July 28, 2017      83        6.5
## 226                              Romance     April 21, 2017      83        6.5
## 227                        Drama / Short   January 20, 2020      17        6.5
## 228           Hidden-camera prank comedy     March 26, 2021      86        6.6
## 229               Psychological thriller  December 21, 2018     124        6.6
## 230                          Documentary    August 19, 2016      79        6.6
## 231               Psychological thriller  September 4, 2020     134        6.6
## 232                          Documentary   October 25, 2019     126        6.6
## 233                          Documentary      June 29, 2018      89        6.6
## 234                          Documentary   December 7, 2018      58        6.6
## 235                          Documentary  November 23, 2020      83        6.6
## 236                          Documentary   December 7, 2018      98        6.6
## 237                         Spy thriller September 14, 2018     114        6.6
## 238                         Spy thriller      July 31, 2019     130        6.6
## 239                          Documentary   January 15, 2021      32        6.6
## 240              Animated musical comedy     April 16, 2021      92        6.7
## 241                          Documentary  November 20, 2019      86        6.7
## 242                                Drama       May 27, 2021      95        6.7
## 243                          Documentary      June 16, 2017      91        6.7
## 244                          Documentary   January 11, 2021      89        6.7
## 245                               Action     April 24, 2020     117        6.7
## 246                          Documentary  December 11, 2020      90        6.7
## 247                                Drama  November 24, 2020     117        6.7
## 248                                Drama   February 3, 2017      87        6.7
## 249                       Romantic drama   February 5, 2021     106        6.7
## 250                         Variety Show   February 7, 2017      54        6.7
## 251                                Drama      March 3, 2021     111        6.7
## 252                         Comedy-drama      July 29, 2016     111        6.7
## 253                     Superhero/Action      July 10, 2020     124        6.7
## 254                          Documentary      July 15. 2016     116        6.7
## 255                                Drama   October 10, 2018     144        6.8
## 256                  Biographical/Comedy   January 26, 2018     101        6.8
## 257                          Documentary September 21, 2020      19        6.8
## 258                      Romantic comedy       May 31, 2019     102        6.8
## 259                          Documentary        May 6, 2020      89        6.8
## 260                             Thriller      June 29, 2018     101        6.8
## 261                               Comedy  December 27, 2020      70        6.8
## 262                          Documentary       May 11, 2020      85        6.8
## 263                          Documentary September 12, 2017      39        6.8
## 264                          Documentary     April 20, 2018      79        6.8
## 265                          Documentary  November 21, 2017      73        6.8
## 266                                Drama September 30, 2020     121        6.8
## 267                Aftershow / Interview September 30, 2020      28        6.8
## 268                                Drama   November 2, 2018     122        6.8
## 269                                Drama      July 14, 2017     107        6.8
## 270                          Documentary September 30, 2016      92        6.9
## 271                          Documentary      March 1, 2021      97        6.9
## 272                    Animation / Short  December 28, 2020       7        6.9
## 273                                Drama  February 24, 2017      96        6.9
## 274                               Biopic   December 4, 2020     132        6.9
## 275                              Romance September 29, 2017     103        6.9
## 276                      Historical-epic   November 9, 2018     121        6.9
## 277                          Documentary   October 12, 2018      57        6.9
## 278                          Documentary   February 9, 2018      95        6.9
## 279                          Documentary       June 3, 2020      83        6.9
## 280                          Documentary      July 10, 2020      17        6.9
## 281                              Romance        May 1, 2020     105        6.9
## 282                          Crime drama     March 29, 2019     131        6.9
## 283                     Comedy / Musical       May 23, 2019      30        6.9
## 284                         Comedy-drama   October 13, 2017     112        6.9
## 285                          Documentary   October 12, 2018      86        7.0
## 286                          Documentary September 22, 2017     100        7.0
## 287                Aftershow / Interview   November 3, 2020      14        7.0
## 288                          Documentary   October 13, 2017     109        7.0
## 289                                Drama  December 18, 2020      94        7.0
## 290                Aftershow / Interview  December 18, 2020      31        7.0
## 291                          Documentary     March 17, 2021      99        7.0
## 292                          Documentary  February 23, 2021     108        7.0
## 293                          Documentary     April 26, 2019      48        7.0
## 294                          Documentary       May 17, 2019      84        7.0
## 295                          Documentary     March 22, 2019      70        7.0
## 296                          Documentary  September 1, 2017      27        7.0
## 297                   Animation / Comedy     August 9, 2019      45        7.0
## 298   Christmas/Fantasy/Adventure/Comedy  November 22, 2018     104        7.0
## 299                               Biopic     March 22, 2019     108        7.0
## 300                Aftershow / Interview   January 26, 2017      36        7.1
## 301                            Animation  November 30, 2018      30        7.1
## 302                            Animation   December 1, 2020      47        7.1
## 303                                Drama      June 19, 2019     110        7.1
## 304                          Documentary     April 22, 2020      92        7.1
## 305                          Documentary  November 27, 2020      80        7.1
## 306                    Mentalism special   October 19, 2018      49        7.1
## 307                          Documentary        May 4, 2018      40        7.1
## 308                          Documentary September 10, 2019      96        7.1
## 309                          Documentary     April 20, 2019      97        7.1
## 310                          Documentary       May 26, 2017      78        7.1
## 311                          Documentary September 18, 2015      81        7.1
## 312                          Documentary        May 1, 2019      87        7.1
## 313                         One-man show  November 13, 2018      91        7.1
## 314                          Documentary     March 18, 2016      91        7.1
## 315                          Documentary   October 20, 2017      95        7.1
## 316                                Drama    January 7, 2021     126        7.1
## 317                          Documentary      April 6, 2018      31        7.1
## 318                          Documentary   November 2, 2018      58        7.1
## 319               Psychological thriller September 16, 2020     138        7.1
## 320                                Drama   January 29, 2021     112        7.1
## 321                          Documentary      July 24, 2019     114        7.1
## 322                                Drama   January 22, 2021     125        7.1
## 323                      Romantic comedy    August 17, 2018      99        7.1
## 324                          Documentary September 30, 2020      82        7.2
## 325                          Documentary September 23, 2016      98        7.2
## 326                          Documentary   January 18, 2019      97        7.2
## 327                          Documentary   October 28, 2016     107        7.2
## 328                          Documentary     April 10, 2020      92        7.2
## 329                         Drama-Comedy  February 22, 2019      89        7.2
## 330                                Drama    October 5, 2018     124        7.2
## 331                               Comedy    October 9, 2020     124        7.2
## 332                     Historical drama   November 1, 2019     140        7.2
## 333                            Making-of   October 29, 2019      13        7.2
## 334                                  War    October 7, 2016     108        7.2
## 335                          Documentary    August 10, 2018      11        7.2
## 336                               Biopic   October 25, 2019     118        7.3
## 337                          Crime drama   October 11, 2019     121        7.3
## 338                          Documentary September 13, 2016      24        7.3
## 339                          Documentary      July 17, 2020     100        7.3
## 340                          Documentary       May 12, 2017     101        7.3
## 341                            Animation   October 13, 2020      47        7.3
## 342                          Documentary   February 8, 2019      64        7.3
## 343                    Animation / Short      March 8, 2020      15        7.3
## 344                              Western  November 16, 2018     132        7.3
## 345                          Documentary    October 6, 2017     105        7.3
## 346                         Comedy-drama      June 24, 2016      97        7.3
## 347                          Documentary       May 22, 2015      83        7.3
## 348                          Documentary    August 21, 2019     110        7.4
## 349                          Documentary   November 1, 2019      39        7.4
## 350                          Documentary September 29, 2017      40        7.4
## 351                          Documentary   January 31, 2020      85        7.4
## 352                         Concert Film  November 25, 2020      87        7.4
## 353                          Documentary   October 26, 2018      97        7.4
## 354                          Documentary       June 7, 2019     118        7.4
## 355                Aftershow / Interview  November 27, 2019      23        7.4
## 356                          Documentary      July 29, 2020      40        7.4
## 357                          Documentary   November 2, 2018      98        7.4
## 358                          Documentary      July 17, 2015      80        7.4
## 359                         Concert Film  November 22, 2017     108        7.5
## 360                          Documentary  September 7, 2018      74        7.5
## 361                          Documentary    October 2, 2020      90        7.5
## 362                          Documentary     April 17, 2019     137        7.5
## 363          Animation / Science Fiction    August 16, 2019      71        7.5
## 364                          Documentary   October 27. 2017      98        7.5
## 365                         Variety show  December 24, 2019      70        7.5
## 366                          Documentary September 13, 2018      99        7.5
## 367                          Documentary September 16. 2016      40        7.5
## 368                          Documentary      June 24, 2020     104        7.6
## 369                          Documentary September 21, 2018     124        7.6
## 370                          Documentary      June 12, 2019     144        7.6
## 371                          Documentary   October 18, 2019      85        7.6
## 372                          Documentary      July 27, 2018     100        7.6
## 373                          Documentary  September 9, 2020      94        7.6
## 374                                Drama  December 20, 2019     125        7.6
## 375                          Documentary      June 26, 2015      84        7.6
## 376                      Musical / Short      June 27, 2019      15        7.7
## 377                          Documentary     April 19, 2019      76        7.7
## 378                          Documentary     March 25, 2020     108        7.7
## 379                          Documentary  November 17, 2017      94        7.7
## 380                         Concert Film   October 12, 2016      90        7.7
## 381                    Animation / Short  November 20, 2020      12        7.8
## 382                          Crime drama  November 27, 2019     209        7.8
## 383                                Drama   October 16, 2020     130        7.8
## 384                          Documentary     April 29, 2020      82        7.9
## 385                          Documentary     August 4, 2017     120        7.9
## 386                                Drama   December 6, 2019     136        7.9
## 387                          Documentary   November 4, 2016     112        7.9
## 388                          Documentary  December 21, 2018     105        8.0
## 389                          Documentary      July 14, 2017      89        8.1
## 390                          Documentary  September 7, 2020      85        8.1
## 391                          Documentary    August 26, 2020     106        8.1
## 392                          Documentary    October 7, 2016     100        8.2
## 393                          Documentary      June 19, 2020     107        8.2
## 394 Animation/Christmas/Comedy/Adventure  November 15, 2019      97        8.2
## 395                          Documentary     March 24, 2021      89        8.2
## 396                          Documentary  November 24, 2017     114        8.3
## 397                          Documentary   October 23, 2019      51        8.3
## 398                         Concert Film       May 20, 2020      85        8.4
## 399                         Concert Film  December 31, 2018     125        8.4
## 400                         One-man show  December 16, 2018     153        8.5
## 401                          Documentary    October 4, 2020      83        9.0
##     Language
## 1    English
## 2    English
## 3    English
## 4    English
## 5    English
## 6    English
## 7    English
## 8    English
## 9    English
## 10   English
## 11   English
## 12   English
## 13   English
## 14   English
## 15   English
## 16   English
## 17   English
## 18   English
## 19   English
## 20   English
## 21   English
## 22   English
## 23   English
## 24   English
## 25   English
## 26   English
## 27   English
## 28   English
## 29   English
## 30   English
## 31   English
## 32   English
## 33   English
## 34   English
## 35   English
## 36   English
## 37   English
## 38   English
## 39   English
## 40   English
## 41   English
## 42   English
## 43   English
## 44   English
## 45   English
## 46   English
## 47   English
## 48   English
## 49   English
## 50   English
## 51   English
## 52   English
## 53   English
## 54   English
## 55   English
## 56   English
## 57   English
## 58   English
## 59   English
## 60   English
## 61   English
## 62   English
## 63   English
## 64   English
## 65   English
## 66   English
## 67   English
## 68   English
## 69   English
## 70   English
## 71   English
## 72   English
## 73   English
## 74   English
## 75   English
## 76   English
## 77   English
## 78   English
## 79   English
## 80   English
## 81   English
## 82   English
## 83   English
## 84   English
## 85   English
## 86   English
## 87   English
## 88   English
## 89   English
## 90   English
## 91   English
## 92   English
## 93   English
## 94   English
## 95   English
## 96   English
## 97   English
## 98   English
## 99   English
## 100  English
## 101  English
## 102  English
## 103  English
## 104  English
## 105  English
## 106  English
## 107  English
## 108  English
## 109  English
## 110  English
## 111  English
## 112  English
## 113  English
## 114  English
## 115  English
## 116  English
## 117  English
## 118  English
## 119  English
## 120  English
## 121  English
## 122  English
## 123  English
## 124  English
## 125  English
## 126  English
## 127  English
## 128  English
## 129  English
## 130  English
## 131  English
## 132  English
## 133  English
## 134  English
## 135  English
## 136  English
## 137  English
## 138  English
## 139  English
## 140  English
## 141  English
## 142  English
## 143  English
## 144  English
## 145  English
## 146  English
## 147  English
## 148  English
## 149  English
## 150  English
## 151  English
## 152  English
## 153  English
## 154  English
## 155  English
## 156  English
## 157  English
## 158  English
## 159  English
## 160  English
## 161  English
## 162  English
## 163  English
## 164  English
## 165  English
## 166  English
## 167  English
## 168  English
## 169  English
## 170  English
## 171  English
## 172  English
## 173  English
## 174  English
## 175  English
## 176  English
## 177  English
## 178  English
## 179  English
## 180  English
## 181  English
## 182  English
## 183  English
## 184  English
## 185  English
## 186  English
## 187  English
## 188  English
## 189  English
## 190  English
## 191  English
## 192  English
## 193  English
## 194  English
## 195  English
## 196  English
## 197  English
## 198  English
## 199  English
## 200  English
## 201  English
## 202  English
## 203  English
## 204  English
## 205  English
## 206  English
## 207  English
## 208  English
## 209  English
## 210  English
## 211  English
## 212  English
## 213  English
## 214  English
## 215  English
## 216  English
## 217  English
## 218  English
## 219  English
## 220  English
## 221  English
## 222  English
## 223  English
## 224  English
## 225  English
## 226  English
## 227  English
## 228  English
## 229  English
## 230  English
## 231  English
## 232  English
## 233  English
## 234  English
## 235  English
## 236  English
## 237  English
## 238  English
## 239  English
## 240  English
## 241  English
## 242  English
## 243  English
## 244  English
## 245  English
## 246  English
## 247  English
## 248  English
## 249  English
## 250  English
## 251  English
## 252  English
## 253  English
## 254  English
## 255  English
## 256  English
## 257  English
## 258  English
## 259  English
## 260  English
## 261  English
## 262  English
## 263  English
## 264  English
## 265  English
## 266  English
## 267  English
## 268  English
## 269  English
## 270  English
## 271  English
## 272  English
## 273  English
## 274  English
## 275  English
## 276  English
## 277  English
## 278  English
## 279  English
## 280  English
## 281  English
## 282  English
## 283  English
## 284  English
## 285  English
## 286  English
## 287  English
## 288  English
## 289  English
## 290  English
## 291  English
## 292  English
## 293  English
## 294  English
## 295  English
## 296  English
## 297  English
## 298  English
## 299  English
## 300  English
## 301  English
## 302  English
## 303  English
## 304  English
## 305  English
## 306  English
## 307  English
## 308  English
## 309  English
## 310  English
## 311  English
## 312  English
## 313  English
## 314  English
## 315  English
## 316  English
## 317  English
## 318  English
## 319  English
## 320  English
## 321  English
## 322  English
## 323  English
## 324  English
## 325  English
## 326  English
## 327  English
## 328  English
## 329  English
## 330  English
## 331  English
## 332  English
## 333  English
## 334  English
## 335  English
## 336  English
## 337  English
## 338  English
## 339  English
## 340  English
## 341  English
## 342  English
## 343  English
## 344  English
## 345  English
## 346  English
## 347  English
## 348  English
## 349  English
## 350  English
## 351  English
## 352  English
## 353  English
## 354  English
## 355  English
## 356  English
## 357  English
## 358  English
## 359  English
## 360  English
## 361  English
## 362  English
## 363  English
## 364  English
## 365  English
## 366  English
## 367  English
## 368  English
## 369  English
## 370  English
## 371  English
## 372  English
## 373  English
## 374  English
## 375  English
## 376  English
## 377  English
## 378  English
## 379  English
## 380  English
## 381  English
## 382  English
## 383  English
## 384  English
## 385  English
## 386  English
## 387  English
## 388  English
## 389  English
## 390  English
## 391  English
## 392  English
## 393  English
## 394  English
## 395  English
## 396  English
## 397  English
## 398  English
## 399  English
## 400  English
## 401  English
french=df %>% filter(df$Language=="French")
french
##                                        Title                    Genre
## 1      The Misadventures of Hedi and Cokeman                   Comedy
## 2                                Paris Is Us            Romance drama
## 3                                 We Are One              Documentary
## 4                                 Sentinelle                   Action
## 5                            Earth and Blood                   Action
## 6                             Back to School                   Comedy
## 7   The Most Assassinated Woman in the World                 Thriller
## 8                           To Each, Her Own          Romantic comedy
## 9                              Madame Claude                    Drama
## 10                               The Decline                 Thriller
## 11                                Rogue City              Crime drama
## 12                               Lost Bullet                 Thriller
## 13                      I Am Not an Easy Man          Romantic comedy
## 14                     Anelka: Misunderstood              Documentary
## 15                               Street Flow                    Drama
## 16 Antoine Griezmann: The Making of a Legend              Documentary
## 17                                    Oxygen Science fiction thriller
## 18                       GIMS: On the Record              Documentary
## 19               Tony Parker: The Final Shot              Documentary
## 20              Bigflo & Oil: Hip Hop Frenzy              Documentary
##              Premiere Runtime IMDB.Score Language
## 1   February 10, 2021      99        4.5   French
## 2   February 22, 2019      83        4.6   French
## 3       July 14, 2020      86        4.6   French
## 4       March 5, 2021      80        4.7   French
## 5      April 17, 2020      80        4.9   French
## 6     August 30, 2019      83        5.3   French
## 7   September 7, 2018     102        5.3   French
## 8       June 24, 2018      95        5.3   French
## 9       April 2, 2021     112        5.4   French
## 10     March 27, 2020      83        5.9   French
## 11   October 30, 2020     116        6.1   French
## 12      June 19, 2020      92        6.2   French
## 13     April 13, 2018      98        6.3   French
## 14     August 5, 2020      94        6.4   French
## 15   October 12, 2019      96        6.4   French
## 16     March 21, 2019      60        6.5   French
## 17       May 12, 2021     101        6.5   French
## 18 September 17, 2020      96        6.8   French
## 19    January 6, 2021      98        6.8   French
## 20    October 8, 2020     100        6.9   French
hindi=df %>% filter(df$Language=="Hindi")
hindi
##                                    Title                 Genre
## 1                            Kaali Khuhi               Mystery
## 2                                  Drive                Action
## 3                     Sardar Ka Grandson                Comedy
## 4                          Ghost Stories      Horror anthology
## 5                  The Girl on the Train              Thriller
## 6                     Mrs. Serial Killer              Thriller
## 7         Gunjan Saxena: The Kargil Girl                 Drama
## 8  Dolly Kitty and Those Twinkling Stars                 Drama
## 9                                 Guilty              Thriller
## 10                          House Arrest                Comedy
## 11                      Ginny Weds Sunny       Romantic comedy
## 12               Choked: Paisa Bolta Hai                 Drama
## 13                          Class of '83                 Drama
## 14                          Rajma Chawal          Comedy-drama
## 15                                 Maska       Romantic comedy
## 16                            Lovefucked                 Drama
## 17         Tribhanga – Tedhi Medhi Crazy                 Drama
## 18                         Music Teacher                 Drama
## 19                            Chopsticks                Comedy
## 20                          Lust Stories                 Drama
## 21                               Bulbbul                Horror
## 22                             Milestone                 Drama
## 23                       Ajeeb Daastaans                 Drama
## 24                              Upstarts                 Drama
## 25                  Long Live Brij Mohan                Comedy
## 26                           Serious Men                 Drama
## 27                              AK vs AK              Thriller
## 28                              Pagglait          Comedy-drama
## 29                  Love per Square Foot       Romantic comedy
## 30                                  Soni           Crime drama
## 31                        Raat Akeli Hai              Thriller
## 32                                  Ludo Anthology/Dark comedy
## 33                            Yeh Ballet                 Drama
##              Premiere Runtime IMDB.Score Language
## 1    October 30, 2020      90        3.4    Hindi
## 2    November 1, 2019     147        3.5    Hindi
## 3        May 18, 2021     139        4.1    Hindi
## 4     January 1, 2020     144        4.3    Hindi
## 5   February 26, 2021     120        4.4    Hindi
## 6         May 1, 2020     106        4.8    Hindi
## 7     August 12, 2020     112        5.3    Hindi
## 8  September 18, 2020     120        5.4    Hindi
## 9       March 6, 2020     119        5.4    Hindi
## 10  November 15, 2019     104        5.5    Hindi
## 11    October 9, 2020     125        5.7    Hindi
## 12       June 5, 2020     114        5.8    Hindi
## 13    August 21, 2020      98        5.8    Hindi
## 14  November 30, 2018     118        5.8    Hindi
## 15     March 27, 2020     111        5.9    Hindi
## 16     August 9, 2019     106        6.0    Hindi
## 17   January 15, 2021      95        6.1    Hindi
## 18     April 19, 2019     101        6.3    Hindi
## 19       May 31, 2019     100        6.5    Hindi
## 20      June 15, 2018     120        6.5    Hindi
## 21      June 24, 2020      94        6.6    Hindi
## 22        May 7, 2021      98        6.6    Hindi
## 23     April 16, 2021     142        6.7    Hindi
## 24   October 18, 2019     112        6.7    Hindi
## 25     August 3, 2018     105        6.8    Hindi
## 26    October 2, 2020     114        6.8    Hindi
## 27  December 24, 2020     108        6.9    Hindi
## 28     March 26, 2021     114        6.9    Hindi
## 29  February 14, 2018     133        7.2    Hindi
## 30   January 18, 2019      97        7.2    Hindi
## 31      July 31, 2020     149        7.3    Hindi
## 32  November 12, 2020     149        7.6    Hindi
## 33  February 21, 2020     117        7.6    Hindi
german=df %>% filter(df$Language=="German")
german
##                      Title              Genre          Premiere Runtime
## 1      Christmas Crossfire           Thriller  December 4, 2020     106
## 2 Freaks: You're One of Us Supernatural drama September 2, 2020      92
## 3              Rising High             Satire    April 17, 2020      94
## 4           What We Wanted              Drama November 11, 2020      93
## 5               Isi & Ossi    Romantic comedy February 14, 2020     113
##   IMDB.Score Language
## 1        4.8   German
## 2        5.4   German
## 3        5.8   German
## 4        5.8   German
## 5        6.4   German
tamil=df %>% filter(df$Language=="Tamil")
tamil
##       Title Genre    Premiere Runtime IMDB.Score Language
## 1 Sometimes Drama May 1, 2018     101        7.2    Tamil
bengali=df %>% filter(df$Language=="Bengali")
bengali
##               Title       Genre         Premiere Runtime IMDB.Score Language
## 1 Rooting for Roona Documentary October 15, 2020      41        7.1  Bengali
kannada=df %>% filter(df$Language=="Kannada")
kannada
## [1] Title      Genre      Premiere   Runtime    IMDB.Score Language  
## <0 rows> (or 0-length row.names)
japanese=df %>% filter(df$Language=="Japanese")
japanese
##                       Title                        Genre         Premiere
## 1               Ride or Die Psychological thriller drama   April 15, 2021
## 2        The Forest of Love                        Drama October 11, 2019
## 3 Altered Carbon: Resleeved        Anime/Science fiction   March 19, 2020
## 4            A Whisker Away                Anime/Fantasy    June 18, 2020
## 5                    Blame!        Anime/Science fiction     May 20, 2017
## 6          Little Miss Sumo                  Documentary October 28, 2019
##   Runtime IMDB.Score Language
## 1     142        5.5 Japanese
## 2     151        6.3 Japanese
## 3      74        6.5 Japanese
## 4     104        6.7 Japanese
## 5     106        6.7 Japanese
## 6      19        6.7 Japanese
korean=df %>% filter(df$Language=="Korean")
korean
##                         Title           Genre          Premiere Runtime
## 1                    The Call           Drama November 27, 2020     112
## 2   What Happened to Mr. Cha?          Comedy   January 1, 2021     102
## 3                Time to Hunt        Thriller    April 23, 2020     134
## 4              Space Sweepers Science fiction  February 5, 2021     136
## 5           Night in Paradise           Drama     April 9, 2021     132
## 6 Blackpink: Light Up the Sky     Documentary  October 14, 2020      79
##   IMDB.Score Language
## 1        4.1   Korean
## 2        4.3   Korean
## 3        6.3   Korean
## 4        6.6   Korean
## 5        6.7   Korean
## 6        7.5   Korean
italian=df %>% filter(df$Language=="Italian")
italian
##                          Title                  Genre           Premiere
## 1                      The App  Science fiction/Drama  December 26, 2019
## 2             5 Star Christmas                 Comedy   December 7, 2018
## 3                  The Players                 Comedy      July 15, 2020
## 4                  The Binding                  Drama    October 2, 2020
## 5                    The Beast                  Drama  November 27, 2020
## 6       Under the Riccione Sun Romantic teenage drama       July 1, 2020
## 7            The Last Paradiso         Romantic drama   February 5, 2021
## 8             Caught by a Wave    Romantic teen drama     March 25, 2021
## 9                       Ultras            Sports film     March 20, 2020
## 10        Forgive Us Our Debts                  Drama        May 4, 2018
## 11 Baggio: The Divine Ponytail                 Biopic       May 26, 2021
## 12              The Life Ahead                  Drama  November 13, 2020
## 13                 Rose Island                 Comedy   December 9, 2020
## 14                  On My Skin            Crime drama September 12, 2018
##    Runtime IMDB.Score Language
## 1       79        2.6  Italian
## 2       95        4.6  Italian
## 3       88        4.6  Italian
## 4       93        4.7  Italian
## 5       99        5.2  Italian
## 6      101        5.4  Italian
## 7      107        5.6  Italian
## 8       99        5.7  Italian
## 9      108        5.9  Italian
## 10     104        6.0  Italian
## 11      92        6.2  Italian
## 12      95        6.8  Italian
## 13     117        7.0  Italian
## 14     100        7.3  Italian
polish=df %>% filter(df$Language=="Polish")
polish
##                                Title           Genre          Premiere Runtime
## 1 Nobody Sleeps in the Woods Tonight          Horror  October 28, 2020     103
## 2                       Squared Love Romantic comedy February 11, 2021     102
## 3                         Prime Time        Thriller    April 14, 2021      91
##   IMDB.Score Language
## 1        4.8   Polish
## 2        5.0   Polish
## 3        5.7   Polish
spanish=df %>% filter(df$Language=="Spanish")
spanish
##                                            Title                      Genre
## 1                                    Dark Forces                   Thriller
## 2                                 After the Raid                Documentary
## 3                            The Day of the Lord                      Drama
## 4                                      Intuition                   Thriller
## 5       Who Would You Take to a Deserted Island?                      Drama
## 6                             Despite Everything                     Comedy
## 7                                  The Paramedic                   Thriller
## 8                                     Dad Wanted                     Family
## 9                                You've Got This            Romantic comedy
## 10                               Unknown Origins                   Thriller
## 11                                    Below Zero                      Drama
## 12                         Offering to the Storm                   Thriller
## 13                              Notes for My Son                      Drama
## 14                          Como Caído del Cielo             Musical comedy
## 15                                  The Occupant                   Thriller
## 16                         Nobody Knows I'm Here                      Drama
## 17                               Crazy About Her            Romantic comedy
## 18                               Elisa & Marcela                    Romance
## 19                          The Crimes That Bind                Crime drama
## 20                      Parchis: The Documentary                Documentary
## 21                                        7 años                      Drama
## 22 A Life of Speed: The Juan Manuel Fangio Story                Documentary
## 23                    Lorena, Light-Footed Woman                Documentary
## 24         Los Tigres del Norte at Folsom Prison                Documentary
## 25                       El Pepe: A Supreme Life                Documentary
## 26           Guillermo Vilas: Settling the Score                Documentary
## 27                                     Seventeen Coming-of-age comedy-drama
## 28                            I'm No Longer Here                      Drama
## 29                                  Road to Roma                  Making-of
## 30                                          Roma                      Drama
## 31         The Three Deaths of Marisela Escobedo                Documentary
##              Premiere Runtime IMDB.Score Language
## 1     August 21, 2020      81        2.6  Spanish
## 2   December 19, 2019      25        4.3  Spanish
## 3    October 30, 2020      93        4.9  Spanish
## 4        May 28, 2020     116        5.3  Spanish
## 5      April 12, 2019      93        5.3  Spanish
## 6         May 3, 2019      78        5.4  Spanish
## 7  September 16, 2020      94        5.6  Spanish
## 8  September 11, 2020     102        5.7  Spanish
## 9     October 2, 2020     111        5.8  Spanish
## 10    August 28, 2020      96        6.1  Spanish
## 11   January 29, 2021     106        6.2  Spanish
## 12      July 24, 2020     139        6.2  Spanish
## 13  November 24, 2020      83        6.3  Spanish
## 14  December 24, 2019     112        6.4  Spanish
## 15     March 25, 2020     103        6.4  Spanish
## 16      June 24, 2020      91        6.5  Spanish
## 17  February 26, 2021     102        6.6  Spanish
## 18       June 7, 2019     118        6.6  Spanish
## 19    August 20, 2020      99        6.6  Spanish
## 20      July 10, 2019     106        6.7  Spanish
## 21   October 28, 2016      76        6.8  Spanish
## 22     March 20, 2020      92        6.8  Spanish
## 23  November 20, 2019      28        7.0  Spanish
## 24 September 15, 2019      64        7.0  Spanish
## 25  December 27, 2019      73        7.1  Spanish
## 26   October 27, 2020      94        7.1  Spanish
## 27   October 18, 2019      99        7.2  Spanish
## 28       May 27, 2020     105        7.3  Spanish
## 29  February 11, 2020      72        7.7  Spanish
## 30  December 14, 2018     135        7.7  Spanish
## 31   October 14, 2020     109        8.2  Spanish
portugese=df %>% filter(df$Language=="Portuguese")
portugese
##                                               Title           Genre
## 1  Porta dos Fundos: The First Temptation of Christ          Comedy
## 2                                     Airplane Mode          Comedy
## 3                                     Get the Grift          Comedy
## 4                                        Double Dad    Comedy-drama
## 5                                      Rich in Love Romantic comedy
## 6                                        The Killer         Western
## 7                                      Get the Goat          Comedy
## 8               Porta dos Fundos: The Last Hangover          Comedy
## 9                            Just Another Christmas          Comedy
## 10                                        Laerte-se     Documentary
## 11                            The Edge of Democracy     Documentary
## 12        Emicida: AmarElo - It's All For Yesterday     Documentary
##             Premiere Runtime IMDB.Score   Language
## 1   December 3, 2019      46        4.6 Portuguese
## 2   January 23, 2020      96        5.0 Portuguese
## 3     April 28, 2021      94        5.5 Portuguese
## 4   January 15, 2021     103        5.6 Portuguese
## 5     April 30, 2020     105        5.8 Portuguese
## 6  November 10, 2017      99        6.1 Portuguese
## 7     March 18, 2021      97        6.3 Portuguese
## 8  December 21, 2018      44        6.3 Portuguese
## 9   December 3, 2020     101        6.7 Portuguese
## 10      May 19, 2017     100        6.9 Portuguese
## 11     June 19, 2019     121        7.2 Portuguese
## 12  December 8, 2020      89        8.6 Portuguese
marathi=df %>% filter(df$Language=="Marathi")
marathi
##          Title        Genre          Premiere Runtime IMDB.Score Language
## 1    Firebrand        Drama February 22, 2019     112        5.2  Marathi
## 2    15 August Comedy-drama    March 29, 2019     124        5.8  Marathi
## 3 The Disciple        Drama    April 30, 2021     129        7.2  Marathi
telugu=df %>% filter(df$Language=="Telugu")
telugu
## [1] Title      Genre      Premiere   Runtime    IMDB.Score Language  
## <0 rows> (or 0-length row.names)
thai=df %>% filter(df$Language=="Thai")
thai
##       Title       Genre      Premiere Runtime IMDB.Score Language
## 1 Ghost Lab      Horror  May 26, 2021     117        5.2     Thai
## 2  One Take Documentary June 18, 2020      85        5.7     Thai
action=df %>% filter(df$Genre=="Action")
action
##             Title  Genre          Premiere Runtime IMDB.Score Language
## 1           Drive Action  November 1, 2019     147        3.5    Hindi
## 2      Sentinelle Action     March 5, 2021      80        4.7   French
## 3 Earth and Blood Action    April 17, 2020      80        4.9   French
## 4     Point Blank Action     July 12, 2019      86        5.7  English
## 5   6 Underground Action December 13, 2019     128        6.1  English
## 6           Polar Action  January 25, 2019     118        6.3  English
## 7      Extraction Action    April 24, 2020     117        6.7  English
animation=df %>% filter(df$Genre=="Animation")
animation
##                                Title     Genre          Premiere Runtime
## 1             The Larva Island Movie Animation     July 23, 2020      90
## 2 Octonauts & the Caves of Sac Actun Animation   August 14, 2020      72
## 3                 Angela's Christmas Animation November 30, 2018      30
## 4            Angela's Christmas Wish Animation  December 1, 2020      47
## 5 Octonauts & the Great Barrier Reef Animation  October 13, 2020      47
##   IMDB.Score Language
## 1        5.1  English
## 2        6.2  English
## 3        7.1  English
## 4        7.1  English
## 5        7.3  English
actioncomedy=df %>% filter(df$Genre=="Action comedy")
actioncomedy
##                                       Title         Genre          Premiere
## 1                        All Because of You Action comedy   October 1, 2020
## 2                           Coffee & Kareem Action comedy     April 3, 2020
## 3                               The Do-Over Action comedy      May 27, 2016
## 4 True Memoirs of an International Assassin Action comedy November 11, 2016
## 5                      Spenser Confidential Action comedy     March 6, 2020
##   Runtime IMDB.Score Language
## 1     101        4.2    Malay
## 2      88        5.1  English
## 3     108        5.7  English
## 4      98        5.9  English
## 5     111        6.2  English
adventure=df %>% filter(df$Genre=="Adventure")
adventure
##                          Title     Genre         Premiere Runtime IMDB.Score
## 1        Pee-wee's Big Holiday Adventure   March 18, 2016      89        6.1
## 2 Mowgli: Legend of the Jungle Adventure December 7, 2018     104        6.5
##   Language
## 1  English
## 2  English
actionthriller=df %>% filter(df$Genre=="Action-thriller")
actionthriller
##                    Title           Genre         Premiere Runtime IMDB.Score
## 1            How It Ends Action-thriller    July 13, 2018     113        5.0
## 2        Triple Frontier Action-thriller   March 13, 2019     125        6.4
## 3 The Night Comes for Us Action-thriller October 19, 2018     121        7.0
##     Language
## 1    English
## 2    English
## 3 Indonesian
biopic=df %>% filter(df$Genre=="Biopic")
biopic
##                             Title  Genre          Premiere Runtime IMDB.Score
## 1                           Barry Biopic December 16, 2016     104        5.8
## 2                     Come Sunday Biopic    April 13, 2018     106        6.0
## 3                          Sergio Biopic    April 17, 2020     118        6.1
## 4 The Most Hated Woman in America Biopic    March 24, 2017      92        6.1
## 5     Baggio: The Divine Ponytail Biopic      May 26, 2021      92        6.2
## 6                 Roxanne Roxanne Biopic    March 23, 2018      98        6.2
## 7                            Mank Biopic  December 4, 2020     132        6.9
## 8                        The Dirt Biopic    March 22, 2019     108        7.0
## 9             Dolemite Is My Name Biopic  October 25, 2019     118        7.3
##   Language
## 1  English
## 2  English
## 3  English
## 4  English
## 5  Italian
## 6  English
## 7  English
## 8  English
## 9  English
comedi=df %>% filter(df$Genre=="Comedy")
comedi
##                                               Title  Genre           Premiere
## 1                                 Leyla Everlasting Comedy   December 4, 2020
## 2                                Sardar Ka Grandson Comedy       May 18, 2021
## 3                         What Happened to Mr. Cha? Comedy    January 1, 2021
## 4                                        Sextuplets Comedy    August 16, 2019
## 5                                  Seriously Single Comedy      July 31, 2020
## 6             The Misadventures of Hedi and Cokeman Comedy  February 10, 2021
## 7                                  5 Star Christmas Comedy   December 7, 2018
## 8  Porta dos Fundos: The First Temptation of Christ Comedy   December 3, 2019
## 9                                       The Players Comedy      July 15, 2020
## 10                                      Take the 10 Comedy   January 20, 2017
## 11                                   The Main Event Comedy     April 10, 2020
## 12                                    Airplane Mode Comedy   January 23, 2020
## 13                                     #REALITYHIGH Comedy  September 8, 2017
## 14                               Father of the Year Comedy      July 20, 2018
## 15                                 Girlfriend's Day Comedy  February 14, 2017
## 16                Handsome: A Netflix Mystery Movie Comedy        May 5, 2017
## 17                                  Hubie Halloween Comedy    October 7, 2020
## 18                                            Ibiza Comedy       May 25, 2018
## 19                                     Sandy Wexler Comedy     April 14, 2017
## 20                                      The Week Of Comedy     April 27, 2018
## 21                                   Back to School Comedy    August 30, 2019
## 22                               Despite Everything Comedy        May 3, 2019
## 23                                            Naked Comedy    August 11, 2017
## 24                                    Get the Grift Comedy     April 28, 2021
## 25                                     House Arrest Comedy  November 15, 2019
## 26                                     Step Sisters Comedy   January 19, 2018
## 27                                    Unicorn Store Comedy      April 5, 2019
## 28                                     Wine Country Comedy       May 10, 2019
## 29                                    Brahman Naman Comedy       July 7, 2016
## 30                                    The Sleepover Comedy    August 21, 2020
## 31                                        Lionheart Comedy    January 4, 2019
## 32                                  The Wrong Missy Comedy       May 13, 2020
## 33                                          Yes Day Comedy     March 12, 2021
## 34                                        Candy Jar Comedy     April 27, 2018
## 35                                  The After Party Comedy    August 24, 2018
## 36                     Between Two Ferns: The Movie Comedy September 20, 2019
## 37                                      Like Father Comedy     August 3, 2018
## 38                                        Otherhood Comedy     August 2, 2019
## 39                    Have You Ever Seen Fireflies? Comedy      April 9, 2021
## 40                                       Win It All Comedy      April 7, 2017
## 41                                     Get the Goat Comedy     March 18, 2021
## 42              Porta dos Fundos: The Last Hangover Comedy  December 21, 2018
## 43                                       Chopsticks Comedy       May 31, 2019
## 44                     The Incredible Jessica James Comedy      July 28, 2017
## 45                           Just Another Christmas Comedy   December 3, 2020
## 46                             Long Live Brij Mohan Comedy     August 3, 2018
## 47                                    Death to 2020 Comedy  December 27, 2020
## 48                                      Rose Island Comedy   December 9, 2020
## 49                          The 40-Year-Old Version Comedy    October 9, 2020
##    Runtime IMDB.Score   Language
## 1      112        3.7    Turkish
## 2      139        4.1      Hindi
## 3      102        4.3     Korean
## 4       99        4.4    English
## 5      107        4.5    English
## 6       99        4.5     French
## 7       95        4.6    Italian
## 8       46        4.6 Portuguese
## 9       88        4.6    Italian
## 10      80        4.8    English
## 11     101        4.8    English
## 12      96        5.0 Portuguese
## 13      99        5.2    English
## 14      94        5.2    English
## 15      70        5.2    English
## 16      81        5.2    English
## 17     103        5.2    English
## 18      94        5.2    English
## 19     131        5.2    English
## 20     116        5.2    English
## 21      83        5.3     French
## 22      78        5.4    Spanish
## 23      96        5.4    English
## 24      94        5.5 Portuguese
## 25     104        5.5      Hindi
## 26     108        5.5    English
## 27      92        5.5    English
## 28     103        5.5    English
## 29      95        5.6    English
## 30     103        5.6    English
## 31      94        5.7    English
## 32      90        5.7    English
## 33      86        5.7    English
## 34      92        5.8    English
## 35      89        5.8    English
## 36      82        6.1    English
## 37     103        6.1    English
## 38     100        6.1    English
## 39     114        6.2    Turkish
## 40      88        6.2    English
## 41      97        6.3 Portuguese
## 42      44        6.3 Portuguese
## 43     100        6.5      Hindi
## 44      83        6.5    English
## 45     101        6.7 Portuguese
## 46     105        6.8      Hindi
## 47      70        6.8    English
## 48     117        7.0    Italian
## 49     124        7.2    English
drama=df %>% filter(df$Genre=="Drama")
drama
##                                         Title Genre           Premiere Runtime
## 1                                    The Call Drama  November 27, 2020     112
## 2                               Finding Agnes Drama  November 30, 2020     105
## 3                                 The Binding Drama    October 2, 2020      93
## 4                         The Day of the Lord Drama   October 30, 2020      93
## 5                  Love Like the Falling Rain Drama   October 15, 2020      86
## 6                                   Firebrand Drama  February 22, 2019     112
## 7                                   The Beast Drama  November 27, 2020      99
## 8              Gunjan Saxena: The Kargil Girl Drama    August 12, 2020     112
## 9    Who Would You Take to a Deserted Island? Drama     April 12, 2019      93
## 10                                       XOXO Drama    August 26, 2016      92
## 11      Dolly Kitty and Those Twinkling Stars Drama September 18, 2020     120
## 12                              Madame Claude Drama      April 2, 2021     112
## 13                                   Good Sam Drama       May 16, 2019      89
## 14                        All Day and a Night Drama        May 1, 2020     121
## 15                               American Son Drama   November 1, 2019      90
## 16                    Choked: Paisa Bolta Hai Drama       June 5, 2020     114
## 17                               Class of '83 Drama    August 21, 2020      98
## 18                             What We Wanted Drama  November 11, 2020      93
## 19                                 6 Balloons Drama      April 6, 2018      75
## 20                                 Horse Girl Drama   February 7, 2020     104
## 21                       Forgive Us Our Debts Drama        May 4, 2018     104
## 22                                 Lovefucked Drama     August 9, 2019     106
## 23                                    Juanita Drama      March 8, 2019      90
## 24                              Burning Sands Drama     March 10, 2017     102
## 25                 Deidra & Laney Rob a Train Drama     March 17, 2017      94
## 26                                Stuck Apart Drama    January 8, 2021      96
## 27                       Tersanjung the Movie Drama      April 1, 2021     114
## 28              Tribhanga – Tedhi Medhi Crazy Drama   January 15, 2021      95
## 29                                 Below Zero Drama   January 29, 2021     106
## 30                                   Citation Drama   November 6, 2020     151
## 31                  The Land of Steady Habits Drama September 14, 2018      98
## 32                            Concrete Cowboy Drama      April 2, 2021     111
## 33                                June & Kopi Drama   January 28, 2021      90
## 34                              Music Teacher Drama     April 19, 2019     101
## 35                           Notes for My Son Drama  November 24, 2020      83
## 36                         The Forest of Love Drama   October 11, 2019     151
## 37                                   Uncorked Drama     March 27, 2020     103
## 38                          Irreplaceable You Drama  February 16, 2018      96
## 39                                Street Flow Drama   October 12, 2019      96
## 40                         Walk. Ride. Rodeo. Drama      March 8, 2019      99
## 41                           All Together Now Drama    August 28, 2020      93
## 42                               Lust Stories Drama      June 15, 2018     120
## 43                                    Monster Drama        May 7, 2021      98
## 44                      Nobody Knows I'm Here Drama      June 24, 2020      91
## 45                                  Tigertail Drama     April 10, 2020      91
## 46                                  Milestone Drama        May 7, 2021      98
## 47                            Ajeeb Daastaans Drama     April 16, 2021     142
## 48                               Blue Miracle Drama       May 27, 2021      95
## 49                            Hillbilly Elegy Drama  November 24, 2020     117
## 50                            Imperial Dreams Drama   February 3, 2017      87
## 51                                      Moxie Drama      March 3, 2021     111
## 52                          Night in Paradise Drama      April 9, 2021     132
## 53                                Paper Lives Drama     March 12, 2021      97
## 54                                   Upstarts Drama   October 18, 2019     112
## 55                                    22 July Drama   October 10, 2018     144
## 56                                     7 años Drama   October 28, 2016      76
## 57                                Serious Men Drama    October 2, 2020     114
## 58                       The Boys in the Band Drama September 30, 2020     121
## 59                             The Life Ahead Drama  November 13, 2020      95
## 60                 The Other Side of the Wind Drama   November 2, 2018     122
## 61                                To the Bone Drama      July 14, 2017     107
## 62 I Don't Feel at Home in This World Anymore Drama  February 24, 2017      96
## 63                   Ma Rainey's Black Bottom Drama  December 18, 2020      94
## 64                                      Beats Drama      June 19, 2019     110
## 65                          Pieces of a Woman Drama    January 7, 2021     126
## 66                                    The Dig Drama   January 29, 2021     112
## 67                            The White Tiger Drama   January 22, 2021     125
## 68                First They Killed My Father Drama September 15, 2017     136
## 69                               Private Life Drama    October 5, 2018     124
## 70                                  Sometimes Drama        May 1, 2018     101
## 71                               The Disciple Drama     April 30, 2021     129
## 72                         I'm No Longer Here Drama       May 27, 2020     105
## 73                              The Two Popes Drama  December 20, 2019     125
## 74                                 Yeh Ballet Drama  February 21, 2020     117
## 75                                       Roma Drama  December 14, 2018     135
## 76                 The Trial of the Chicago 7 Drama   October 16, 2020     130
## 77                             Marriage Story Drama   December 6, 2019     136
##    IMDB.Score                   Language
## 1         4.1                     Korean
## 2         4.7                   Filipino
## 3         4.7                    Italian
## 4         4.9                    Spanish
## 5         5.0                 Indonesian
## 6         5.2                    Marathi
## 7         5.2                    Italian
## 8         5.3                      Hindi
## 9         5.3                    Spanish
## 10        5.3                    English
## 11        5.4                      Hindi
## 12        5.4                     French
## 13        5.7                    English
## 14        5.8                    English
## 15        5.8                    English
## 16        5.8                      Hindi
## 17        5.8                      Hindi
## 18        5.8                     German
## 19        5.9                    English
## 20        5.9                    English
## 21        6.0                    Italian
## 22        6.0                      Hindi
## 23        6.0                    English
## 24        6.1                    English
## 25        6.1                    English
## 26        6.1                    Turkish
## 27        6.1                 Indonesian
## 28        6.1                      Hindi
## 29        6.2                    Spanish
## 30        6.2                    English
## 31        6.2                    English
## 32        6.3                    English
## 33        6.3                 Indonesian
## 34        6.3                      Hindi
## 35        6.3                    Spanish
## 36        6.3                   Japanese
## 37        6.3                    English
## 38        6.4                    English
## 39        6.4                     French
## 40        6.4                    English
## 41        6.5                    English
## 42        6.5                      Hindi
## 43        6.5                    English
## 44        6.5                    Spanish
## 45        6.5 English/Taiwanese/Mandarin
## 46        6.6                      Hindi
## 47        6.7                      Hindi
## 48        6.7                    English
## 49        6.7                    English
## 50        6.7                    English
## 51        6.7                    English
## 52        6.7                     Korean
## 53        6.7                    Turkish
## 54        6.7                      Hindi
## 55        6.8                    English
## 56        6.8                    Spanish
## 57        6.8                      Hindi
## 58        6.8                    English
## 59        6.8                    Italian
## 60        6.8                    English
## 61        6.8                    English
## 62        6.9                    English
## 63        7.0                    English
## 64        7.1                    English
## 65        7.1                    English
## 66        7.1                    English
## 67        7.1                    English
## 68        7.2       Khmer/English/French
## 69        7.2                    English
## 70        7.2                      Tamil
## 71        7.2                    Marathi
## 72        7.3                    Spanish
## 73        7.6                    English
## 74        7.6                      Hindi
## 75        7.7                    Spanish
## 76        7.8                    English
## 77        7.9                    English
famili=df %>% filter(df$Genre=="Family")
famili
##            Title  Genre           Premiere Runtime IMDB.Score Language
## 1     Dad Wanted Family September 11, 2020     102        5.7  Spanish
## 2 Finding 'Ohana Family   January 29, 2021     123        6.1  English
documentary=df %>% filter(df$Genre=="Documentary")
documentary
##                                                                                                          Title
## 1                                                                                              Enter the Anime
## 2                                                                                         Searching for Sheela
## 3                                                                                               After the Raid
## 4                                                                            Hello Privilege. It's Me, Chelsea
## 5                                                                                                  After Maria
## 6                                                                                                   We Are One
## 7                                                                                          Strip Down, Rise Up
## 8                                                                                         Ghosts of Sugar Land
## 9                                                                                         Why Did You Kill Me?
## 10                                                                                                    One Take
## 11                                                                                            Out of Many, One
## 12                                                          Notes from Dunblane: Lesson from a School Shooting
## 13                                                                                The Minimalists: Less Is Now
## 14                                                                                            Casting JonBenet
## 15                                                                                            Hot Girls Wanted
## 16                                                                                           The Rachel Divide
## 17                                                                                                     Voyuer 
## 18                                                                                      A Tale of Two Kitchens
## 19                                                                                        Nail Bomber: Manhunt
## 20                                                                                The Legend of Cocaine Island
## 21                                                                            Travis Scott: Look Mom I Can Fly
## 22                                                                                       Anelka: Misunderstood
## 23                                                                                                     Birders
## 24                                                                           John Was Trying to Contact Aliens
## 25                                                                    Murder to Mercy: The Cyntoia Brown Story
## 26                                                                                                  My Own Man
## 27                                                                                               Strong Island
## 28                                                                                             Take Your Pills
## 29                                                                                         The Mars Generation
## 30                                                                                              Two Catalonias
## 31                                                                                              A 3 Minute Hug
## 32                                                                   Antoine Griezmann: The Making of a Legend
## 33                                                                     Chadwick Boseman: Portrait of an Artist
## 34                                                                           Dolly Parton: A MusiCares Tribute
## 35                                                                                           Life Overtakes Me
## 36                                                                      Nobody Speak: Trials of the Free Press
## 37                                                                                    I'll Sleep When I'm Dead
## 38                                                                                          It Takes a Lunatic
## 39                                                                                               Recovery Boys
## 40                                                                      ReMastered: Who Killed Jam Master Jay?
## 41                                                                                     Shawn Mendes: In Wonder
## 42                                                                                           The American Meme
## 43                                                                                 What Would Sophia Loren Do?
## 44                                                                                Bikram: Yogi, Guru, Predator
## 45                                                                                               CounterPunch 
## 46                                                                     Crack: Cocaine, Corruption & Conspiracy
## 47                                                                                                Giving Voice
## 48                                                                          Hope Frozen: A Quest to Live Twice
## 49                                                                                            Little Miss Sumo
## 50                                                                                    Parchis: The Documentary
## 51                                                                            Tony Robbins: I Am Not Your Guru
## 52                                                               A Life of Speed: The Juan Manuel Fangio Story
## 53                                                                                     A Love Song for Latasha
## 54                                                                                            All in My Family
## 55                                                                                                    Becoming
## 56                                                                                         GIMS: On the Record
## 57                                                                Have a Good Trip: Adventures in Psychedelics
## 58                                                                                                  Heroin(e) 
## 59                                                                                                  Mercury 13
## 60                                                                                           Saving Capitalism
## 61                                                                                                  The Trader
## 62                                                                                 Tony Parker: The Final Shot
## 63                                                                                                 Amanda Knox
## 64                                                                                Bigflo & Oil: Hip Hop Frenzy
## 65                                                                               Biggie: I Got a Story to Tell
## 66                                                                                                   Laerte-se
## 67                                                                           ReMastered: Who Shot the Sheriff?
## 68                                                                                               Seeing Allred
## 69                                                                                          Spelling the Dream
## 70                                                                                      The Claudia Kishi Club
## 71                                                                         Feminists: What Were They Thinking?
## 72                                                                                         Gaga: Five Foot Two
## 73                                                                                               Kingdom of Us
## 74                                                                                  Lorena, Light-Footed Woman
## 75                                                                       Los Tigres del Norte at Folsom Prison
## 76                                                     Operation Varsity Blues: The College Admissions Scandal
## 77                                                                                                        Pele
## 78                                                                         ReMastered: Devil at the Crossroads
## 79                                                                                ReMastered: The Lion's Share
## 80                                                                     ReMastered: The Miami Showband Massacre
## 81                                                                                                   Resurface
## 82                                                                                             Circus of Books
## 83                                                                      Dance Dreams: Hot Chocolate Nutcracker
## 84                                                                                     El Pepe: A Supreme Life
## 85                                                                                                    End Game
## 86                                                                                                      Evelyn
## 87                                                                                            Grass Is Greener
## 88                                                                         Guillermo Vilas: Settling the Score
## 89                                                                             Joshua: Teenager vs. Superpower
## 90                                                                         Keith Richards: Under the Influence
## 91                                                                                        Knock Down the House
## 92                                                                                   My Beautiful Broken Brain
## 93                                                                                                   One of Us
## 94                                                                                        Ram Dass, Going Home
## 95                                                                  ReMastered: Tricky Dick & the Man in Black
## 96                                                                                           Rooting for Roona
## 97                                                                                              The Great Hack
## 98                                                                       American Murder: The Family Next Door
## 99                                                                                              Audrie & Daisy
## 100                                                               Fyre: The Greatest Party That Never Happened
## 101                                                                                           Into the Inferno
## 102                                                                                               LA Originals
## 103                                                                                               Ladies First
## 104                                                                                      The Edge of Democracy
## 105                                                                                                      Zion 
## 106                                                                                                   Extremis
## 107                                                                                         Father Soldier Son
## 108                                                                                         Get Me Roger Stone
## 109                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 110                                                                        ReMastered: Massacre at the Stadium
## 111                                                                  ReMastered: The Two Killings of Sam Cooke
## 112                                                                                Secrets of the Saqqara Tomb
## 113                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 114                                                                                            Team Foxcatcher
## 115                                                                    The Death and Life of Marsha P. Johnson
## 116                                                           The Other One: The Long Strange Trip of Bob Weir
## 117                                                                                           American Factory
## 118                                                                                           Fire in Paradise
## 119                                                                                                  Long Shot
## 120                                                                                             Miss Americana
## 121                                                                                   Period. End of Sentence.
## 122                                                                                                   Shirkers
## 123                                                                                        The Black Godfather
## 124                                                                                           The Speed Cubers
## 125                                                                              They'll Love Me When I'm Dead
## 126                                                                                                        Tig
## 127                                                                                Blackpink: Light Up the Sky
## 128                                                                                                City of Joy
## 129                                                                                       Dick Johnson Is Dead
## 130                                                                             Homecoming: A Film by Beyonce 
## 131                                                                      Joan Didion: The Center Will Not Hold
## 132                                                                                              Reversing Roe
## 133                                                                                          The White Helmets
## 134                                                                                                  Athlete A
## 135                                                                                                     Quincy
## 136                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 137                                                                                           Tell Me Who I Am
## 138                                                                                          The Bleeding Edge
## 139                                                                                         The Social Dilemma
## 140                                                                                What Happened, Miss Simone?
## 141                                                                           Brene Brown: The Call to Courage
## 142                                                                         Crip Camp: A Disability Revolution
## 143 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 144                                                                                              A Secret Love
## 145                                                                                                     Icarus
## 146                                                                                             The Ivory Game
## 147                                                               Struggle: The Life and Lost Art of Szukaiski
## 148                                                                                             Chasing Coral 
## 149                                                                                         My Octopus Teacher
## 150                                                                                             Rising Phoenix
## 151                                                                                                       13th
## 152                                                                          Disclosure: Trans Lives on Screen
## 153                                                                                                 Seaspiracy
## 154                                                                      The Three Deaths of Marisela Escobedo
## 155                                                                                    Cuba and the Cameraman 
## 156                                                                                     Dancing with the Birds
## 157                                                                Winter on Fire: Ukraine's Fight for Freedom
## 158                                                                  Emicida: AmarElo - It's All For Yesterday
## 159                                                                   David Attenborough: A Life on Our Planet
##           Genre           Premiere Runtime IMDB.Score                 Language
## 1   Documentary     August 5, 2019      58        2.5         English/Japanese
## 2   Documentary     April 22, 2021      58        4.1                  English
## 3   Documentary  December 19, 2019      25        4.3                  Spanish
## 4   Documentary September 13, 2019      64        4.4                  English
## 5   Documentary       May 24, 2019      37        4.6          English/Spanish
## 6   Documentary      July 14, 2020      86        4.6                   French
## 7   Documentary   February 5, 2021     112        5.2                  English
## 8   Documentary   October 16. 2019      21        5.5                  English
## 9   Documentary     April 14, 2021      83        5.6                  English
## 10  Documentary      June 18, 2020      85        5.7                     Thai
## 11  Documentary  December 12, 2018      34        5.7                  English
## 12  Documentary September 28, 2018      23        5.9                  English
## 13  Documentary    January 1, 2021      53        5.9                  English
## 14  Documentary     April 28, 2017      80        6.1                  English
## 15  Documentary       May 29, 2015      84        6.1                  English
## 16  Documentary     April 27, 2018     104        6.2                  English
## 17  Documentary   December 1, 2017      95        6.2                  English
## 18  Documentary       May 22, 2019      30        6.3          English/Spanish
## 19  Documentary       May 26, 2021      72        6.3                  English
## 20  Documentary     March 29, 2019      87        6.3                  English
## 21  Documentary    August 28, 2019      85        6.3                  English
## 22  Documentary     August 5, 2020      94        6.4                   French
## 23  Documentary September 25, 2019      37        6.4          English/Spanish
## 24  Documentary    August 20, 2020      16        6.4                  English
## 25  Documentary     April 29, 2020      97        6.4                  English
## 26  Documentary  December 13, 2014      81        6.4                  English
## 27  Documentary September 15. 2017     107        6.4                  English
## 28  Documentary     March 16, 2018      87        6.4                  English
## 29  Documentary        May 5, 2017      97        6.4                  English
## 30  Documentary September 28, 2018     116        6.4          Spanish/Catalan
## 31  Documentary   October 28, 2019      28        6.5          English/Spanish
## 32  Documentary     March 21, 2019      60        6.5                   French
## 33  Documentary     April 17, 2021      21        6.5                  English
## 34  Documentary      April 7, 2021      55        6.5                  English
## 35  Documentary      June 14, 2019      40        6.5          English/Swedish
## 36  Documentary      June 23, 2017      95        6.5                  English
## 37  Documentary    August 19, 2016      79        6.6                  English
## 38  Documentary   October 25, 2019     126        6.6                  English
## 39  Documentary      June 29, 2018      89        6.6                  English
## 40  Documentary   December 7, 2018      58        6.6                  English
## 41  Documentary  November 23, 2020      83        6.6                  English
## 42  Documentary   December 7, 2018      98        6.6                  English
## 43  Documentary   January 15, 2021      32        6.6                  English
## 44  Documentary  November 20, 2019      86        6.7                  English
## 45  Documentary      June 16, 2017      91        6.7                  English
## 46  Documentary   January 11, 2021      89        6.7                  English
## 47  Documentary  December 11, 2020      90        6.7                  English
## 48  Documentary September 15, 2020      80        6.7             Thia/English
## 49  Documentary   October 28, 2019      19        6.7                 Japanese
## 50  Documentary      July 10, 2019     106        6.7                  Spanish
## 51  Documentary      July 15. 2016     116        6.7                  English
## 52  Documentary     March 20, 2020      92        6.8                  Spanish
## 53  Documentary September 21, 2020      19        6.8                  English
## 54  Documentary        May 3, 2019      39        6.8         English/Mandarin
## 55  Documentary        May 6, 2020      89        6.8                  English
## 56  Documentary September 17, 2020      96        6.8                   French
## 57  Documentary       May 11, 2020      85        6.8                  English
## 58  Documentary September 12, 2017      39        6.8                  English
## 59  Documentary     April 20, 2018      79        6.8                  English
## 60  Documentary  November 21, 2017      73        6.8                  English
## 61  Documentary   February 9, 2018      23        6.8                 Georgian
## 62  Documentary    January 6, 2021      98        6.8                   French
## 63  Documentary September 30, 2016      92        6.9                  English
## 64  Documentary    October 8, 2020     100        6.9                   French
## 65  Documentary      March 1, 2021      97        6.9                  English
## 66  Documentary       May 19, 2017     100        6.9               Portuguese
## 67  Documentary   October 12, 2018      57        6.9                  English
## 68  Documentary   February 9, 2018      95        6.9                  English
## 69  Documentary       June 3, 2020      83        6.9                  English
## 70  Documentary      July 10, 2020      17        6.9                  English
## 71  Documentary   October 12, 2018      86        7.0                  English
## 72  Documentary September 22, 2017     100        7.0                  English
## 73  Documentary   October 13, 2017     109        7.0                  English
## 74  Documentary  November 20, 2019      28        7.0                  Spanish
## 75  Documentary September 15, 2019      64        7.0                  Spanish
## 76  Documentary     March 17, 2021      99        7.0                  English
## 77  Documentary  February 23, 2021     108        7.0                  English
## 78  Documentary     April 26, 2019      48        7.0                  English
## 79  Documentary       May 17, 2019      84        7.0                  English
## 80  Documentary     March 22, 2019      70        7.0                  English
## 81  Documentary  September 1, 2017      27        7.0                  English
## 82  Documentary     April 22, 2020      92        7.1                  English
## 83  Documentary  November 27, 2020      80        7.1                  English
## 84  Documentary  December 27, 2019      73        7.1                  Spanish
## 85  Documentary        May 4, 2018      40        7.1                  English
## 86  Documentary September 10, 2019      96        7.1                  English
## 87  Documentary     April 20, 2019      97        7.1                  English
## 88  Documentary   October 27, 2020      94        7.1                  Spanish
## 89  Documentary       May 26, 2017      78        7.1                  English
## 90  Documentary September 18, 2015      81        7.1                  English
## 91  Documentary        May 1, 2019      87        7.1                  English
## 92  Documentary     March 18, 2016      91        7.1                  English
## 93  Documentary   October 20, 2017      95        7.1                  English
## 94  Documentary      April 6, 2018      31        7.1                  English
## 95  Documentary   November 2, 2018      58        7.1                  English
## 96  Documentary   October 15, 2020      41        7.1                  Bengali
## 97  Documentary      July 24, 2019     114        7.1                  English
## 98  Documentary September 30, 2020      82        7.2                  English
## 99  Documentary September 23, 2016      98        7.2                  English
## 100 Documentary   January 18, 2019      97        7.2                  English
## 101 Documentary   October 28, 2016     107        7.2                  English
## 102 Documentary     April 10, 2020      92        7.2                  English
## 103 Documentary      March 8, 2018      39        7.2            English/Hindi
## 104 Documentary      June 19, 2019     121        7.2               Portuguese
## 105 Documentary    August 10, 2018      11        7.2                  English
## 106 Documentary September 13, 2016      24        7.3                  English
## 107 Documentary      July 17, 2020     100        7.3                  English
## 108 Documentary       May 12, 2017     101        7.3                  English
## 109 Documentary       July 8, 2020      96        7.3          Spanish/English
## 110 Documentary   January 11, 2019      64        7.3          English/Spanish
## 111 Documentary   February 8, 2019      64        7.3                  English
## 112 Documentary   October 28, 2020     114        7.3           English/Arabic
## 113 Documentary   October 14, 2016      79        7.3         English/Mandarin
## 114 Documentary     April 29, 2016      90        7.3          English/Russian
## 115 Documentary    October 6, 2017     105        7.3                  English
## 116 Documentary       May 22, 2015      83        7.3                  English
## 117 Documentary    August 21, 2019     110        7.4                  English
## 118 Documentary   November 1, 2019      39        7.4                  English
## 119 Documentary September 29, 2017      40        7.4                  English
## 120 Documentary   January 31, 2020      85        7.4                  English
## 121 Documentary  February 12, 2019      26        7.4            English/Hindi
## 122 Documentary   October 26, 2018      97        7.4                  English
## 123 Documentary       June 7, 2019     118        7.4                  English
## 124 Documentary      July 29, 2020      40        7.4                  English
## 125 Documentary   November 2, 2018      98        7.4                  English
## 126 Documentary      July 17, 2015      80        7.4                  English
## 127 Documentary   October 14, 2020      79        7.5                   Korean
## 128 Documentary  September 7, 2018      74        7.5                  English
## 129 Documentary    October 2, 2020      90        7.5                  English
## 130 Documentary     April 17, 2019     137        7.5                  English
## 131 Documentary   October 27. 2017      98        7.5                  English
## 132 Documentary September 13, 2018      99        7.5                  English
## 133 Documentary September 16. 2016      40        7.5                  English
## 134 Documentary      June 24, 2020     104        7.6                  English
## 135 Documentary September 21, 2018     124        7.6                  English
## 136 Documentary      June 12, 2019     144        7.6                  English
## 137 Documentary   October 18, 2019      85        7.6                  English
## 138 Documentary      July 27, 2018     100        7.6                  English
## 139 Documentary  September 9, 2020      94        7.6                  English
## 140 Documentary      June 26, 2015      84        7.6                  English
## 141 Documentary     April 19, 2019      76        7.7                  English
## 142 Documentary     March 25, 2020     108        7.7                  English
## 143 Documentary  November 17, 2017      94        7.7                  English
## 144 Documentary     April 29, 2020      82        7.9                  English
## 145 Documentary     August 4, 2017     120        7.9                  English
## 146 Documentary   November 4, 2016     112        7.9                  English
## 147 Documentary  December 21, 2018     105        8.0                  English
## 148 Documentary      July 14, 2017      89        8.1                  English
## 149 Documentary  September 7, 2020      85        8.1                  English
## 150 Documentary    August 26, 2020     106        8.1                  English
## 151 Documentary    October 7, 2016     100        8.2                  English
## 152 Documentary      June 19, 2020     107        8.2                  English
## 153 Documentary     March 24, 2021      89        8.2                  English
## 154 Documentary   October 14, 2020     109        8.2                  Spanish
## 155 Documentary  November 24, 2017     114        8.3                  English
## 156 Documentary   October 23, 2019      51        8.3                  English
## 157 Documentary    October 9, 2015      91        8.4 English/Ukranian/Russian
## 158 Documentary   December 8, 2020      89        8.6               Portuguese
## 159 Documentary    October 4, 2020      83        9.0                  English
blackcomdy=df %>% filter(df$Genre=="Black comedy")
blackcomdy
##         Title        Genre         Premiere Runtime IMDB.Score       Language
## 1 The Package Black comedy  August 10, 2018      94        5.5        English
## 2 Bomb Scared Black comedy October 12, 2017      89        5.6 Spanish/Basque
crime=df %>% filter(df$Genre=="Crime drama")
crime
##                              Title       Genre           Premiere Runtime
## 1                          Òlòt?ré Crime drama    October 2, 2020     106
## 2                       Lost Girls Crime drama     March 13, 2020      95
## 3                       Rogue City Crime drama   October 30, 2020     116
## 4                     The Outsider Crime drama      March 9, 2018     120
## 5             The Crimes That Bind Crime drama    August 20, 2020      99
## 6                   The Highwaymen Crime drama     March 29, 2019     131
## 7                            Ferry Crime drama       May 14, 2021     106
## 8                             Soni Crime drama   January 18, 2019      97
## 9  El Camino: A Breaking Bad Movie Crime drama   October 11, 2019     121
## 10                      On My Skin Crime drama September 12, 2018     100
## 11                    The Irishman Crime drama  November 27, 2019     209
##    IMDB.Score         Language
## 1         5.5          English
## 2         6.1          English
## 3         6.1           French
## 4         6.3 English/Japanese
## 5         6.6          Spanish
## 6         6.9          English
## 7         7.1            Dutch
## 8         7.2            Hindi
## 9         7.3          English
## 10        7.3          Italian
## 11        7.8          English
darkcomedy=df %>% filter(df$Genre=="Dark comedy")
darkcomedy
##                 Title       Genre         Premiere Runtime IMDB.Score Language
## 1 El Camino Christmas Dark comedy December 8, 2017      89        5.7  English
## 2        Small Crimes Dark comedy   April 28, 2017      95        5.8  English
horror=df %>% filter(df$Genre=="Horror")
horror
##                                           Title  Genre         Premiere Runtime
## 1 I Am the Pretty Thing That Lives in the House Horror October 28, 2016      89
## 2                                   Rattlesnake Horror October 25, 2019      85
## 3            Nobody Sleeps in the Woods Tonight Horror October 28, 2020     103
## 4                                       Cadaver Horror October 22, 2020      86
## 5                                     Ghost Lab Horror     May 26, 2021     117
## 6                           Things Heard & Seen Horror   April 29, 2021     121
## 7                             In the Tall Grass Horror  October 4, 2019     101
## 8                                           Eli Horror October 18, 2019      98
## 9                                       Bulbbul Horror    June 24, 2020      94
##   IMDB.Score  Language
## 1        4.6   English
## 2        4.6   English
## 3        4.8    Polish
## 4        5.1 Norwegian
## 5        5.2      Thai
## 6        5.3   English
## 7        5.4   English
## 8        5.7   English
## 9        6.6     Hindi
musical=df %>% filter(df$Genre=="Musical")
musical
##          Title   Genre          Premiere Runtime IMDB.Score Language
## 1 Been So Long Musical  October 26, 2018     100        5.5  English
## 2     The Prom Musical December 11, 2020     132        5.9  English
mock=df %>% filter(df$Genre=="Mockumentary")
mock
##                                            Title        Genre         Premiere
## 1                                        Mascots Mockumentary October 13, 2016
## 2 Frankenstein's Monster's Monster, Frankenstein Mockumentary    July 16, 2019
##   Runtime IMDB.Score Language
## 1      95        5.8  English
## 2      32        5.9  English
mystery=df %>% filter(df$Genre=="Mystery")
mystery
##             Title   Genre          Premiere Runtime IMDB.Score Language
## 1     Kaali Khuhi Mystery  October 30, 2020      90        3.4    Hindi
## 2 Earthquake Bird Mystery November 15, 2019     107        5.9  English
romantic=df %>% filter(df$Genre=="Romance")
romantic
##                   Title   Genre           Premiere Runtime IMDB.Score Language
## 1   One-Way to Tomorrow Romance      June 19, 2020      90        5.6  Turkish
## 2 All the Bright Places Romance  February 28, 2020     108        6.5  English
## 3                Tramps Romance     April 21, 2017      83        6.5  English
## 4       Elisa & Marcela Romance       June 7, 2019     118        6.6  Spanish
## 5    Our Souls at Night Romance September 29, 2017     103        6.9  English
## 6        The Half of It Romance        May 1, 2020     105        6.9  English
romanticcomedy=df %>% filter(df$Genre=="Romantic comedy")
romanticcomedy
##                                     Title           Genre           Premiere
## 1                                 Whipped Romantic comedy September 18, 2020
## 2                            Just Say Yes Romantic comedy      April 2, 2021
## 3                            Squared Love Romantic comedy  February 11, 2021
## 4                              Desperados Romantic comedy       July 3, 2020
## 5   A Christmas Prince: The Royal Wedding Romantic comedy  November 30, 2018
## 6                        To Each, Her Own Romantic comedy      June 24, 2018
## 7      A Christmas Prince: The Royal Baby Romantic comedy   December 5, 2019
## 8     The Princess Switch: Switched Again Romantic comedy  November 19, 2020
## 9                     Love Wedding Repeat Romantic comedy     April 10, 2020
## 10            The Knight Before Christmas Romantic comedy  November 21, 2019
## 11                       Falling Inn Love Romantic comedy    August 29, 2019
## 12                       Love, Guaranteed Romantic comedy  September 3, 2020
## 13                       Ginny Weds Sunny Romantic comedy    October 9, 2020
## 14                   The Holiday Calendar Romantic comedy   November 2, 2018
## 15                 A California Christmas Romantic comedy  December 14, 2020
## 16                     A Christmas Prince Romantic comedy  November 17, 2017
## 17                      Happy Anniversary Romantic comedy     March 30, 2018
## 18                            Let It Snow Romantic comedy   November 8, 2019
## 19               Operation Christmas Drop Romantic comedy   November 5, 2020
## 20                           Rich in Love Romantic comedy     April 30, 2020
## 21                    The Kissing Booth 2 Romantic comedy      July 24, 2020
## 22                       The Perfect Date Romantic comedy     April 12, 2019
## 23                        You've Got This Romantic comedy    October 2, 2020
## 24                                  Maska Romantic comedy     March 27, 2020
## 25                      The Kissing Booth Romantic comedy       May 11, 2018
## 26                    The Princess Switch Romantic comedy  November 16, 2018
## 27 To All the Boys: P.S. I Still Love You Romantic comedy  February 12, 2020
## 28                          The Lovebirds Romantic comedy       May 22, 2020
## 29                          Someone Great Romantic comedy     April 19, 2019
## 30                       Alex Strangelove Romantic comedy       June 8, 2018
## 31                   I Am Not an Easy Man Romantic comedy     April 13, 2018
## 32    To All the Boys: Always and Forever Romantic comedy  February 12, 2021
## 33                             Isi & Ossi Romantic comedy  February 14, 2020
## 34                      When We First Met Romantic comedy   February 9, 2018
## 35                              Set It Up Romantic comedy      June 15, 2018
## 36                        Crazy About Her Romantic comedy  February 26, 2021
## 37                     Always Be My Maybe Romantic comedy       May 31, 2019
## 38      To All the Boys I've Loved Before Romantic comedy    August 17, 2018
## 39                   Love per Square Foot Romantic comedy  February 14, 2018
##    Runtime IMDB.Score   Language
## 1       97        4.1 Indonesian
## 2       97        4.5      Dutch
## 3      102        5.0     Polish
## 4      106        5.2    English
## 5       92        5.3    English
## 6       95        5.3     French
## 7       85        5.4    English
## 8       97        5.4    English
## 9      100        5.5    English
## 10      92        5.5    English
## 11      97        5.6    English
## 12      91        5.6    English
## 13     125        5.7      Hindi
## 14      95        5.7    English
## 15     107        5.8    English
## 16      92        5.8    English
## 17      78        5.8    English
## 18      92        5.8    English
## 19      96        5.8    English
## 20     105        5.8 Portuguese
## 21     131        5.8    English
## 22      89        5.8    English
## 23     111        5.8    Spanish
## 24     111        5.9      Hindi
## 25     105        6.0    English
## 26     101        6.0    English
## 27     102        6.0    English
## 28      87        6.1    English
## 29      92        6.2    English
## 30      99        6.3    English
## 31      98        6.3     French
## 32     109        6.3    English
## 33     113        6.4     German
## 34      97        6.4    English
## 35     105        6.5    English
## 36     102        6.6    Spanish
## 37     102        6.8    English
## 38      99        7.1    English
## 39     133        7.2      Hindi
science=df %>% filter(df$Genre=="Science fiction")
science
##                     Title           Genre          Premiere Runtime IMDB.Score
## 1       See You Yesterday Science fiction      May 17, 2019      87        5.2
## 2 The Cloverfield Paradox Science fiction  February 4, 2018     102        5.5
## 3        The Midnight Sky Science fiction December 23, 2020     118        5.6
## 4          Space Sweepers Science fiction  February 5, 2021     136        6.6
##   Language
## 1  English
## 2  English
## 3  English
## 4   Korean
war=df %>% filter(df$Genre=="War")
war
##                     Title Genre        Premiere Runtime IMDB.Score Language
## 1             Sand Castle   War  April 21, 2017     113        6.3  English
## 2 The Siege of Jadotville   War October 7, 2016     108        7.2  English
thrill=df %>% filter(df$Genre=="Thriller")
thrill
##                                       Title    Genre           Premiere Runtime
## 1                               Dark Forces Thriller    August 21, 2020      81
## 2                                     Mercy Thriller  November 22, 2016      90
## 3                          Secret Obsession Thriller      July 18, 2019      97
## 4                     The Girl on the Train Thriller  February 26, 2021     120
## 5                              Fatal Affair Thriller      July 16, 2020      89
## 6                       Christmas Crossfire Thriller   December 4, 2020     106
## 7                        Mrs. Serial Killer Thriller        May 1, 2020     106
## 8                                   Rebirth Thriller      July 15, 2016     100
## 9                                  Clinical Thriller   January 13, 2017     104
## 10                           Dangerous Lies Thriller     April 30, 2020      97
## 11                                Intuition Thriller       May 28, 2020     116
## 12 The Most Assassinated Woman in the World Thriller  September 7, 2018     102
## 13                                   Guilty Thriller      March 6, 2020     119
## 14                                Dead Kids Thriller   December 1, 2019      94
## 15                                  Red Dot Thriller  February 11, 2021      86
## 16                            Hold the Dark Thriller September 28, 2018     125
## 17                            The Paramedic Thriller September 16, 2020      94
## 18                               Prime Time Thriller     April 14, 2021      91
## 19                           Velvet Buzzsaw Thriller   February 1, 2019     112
## 20                           I Am All Girls Thriller       May 14, 2021     107
## 21                        A Fall from Grace Thriller   January 17, 2020     120
## 22                              The Decline Thriller     March 27, 2020      83
## 23                          Unknown Origins Thriller    August 28, 2020      96
## 24                In the Shadow of the Moon Thriller September 27, 2019     115
## 25                              Lost Bullet Thriller      June 19, 2020      92
## 26                    Offering to the Storm Thriller      July 24, 2020     139
## 27                             Time to Hunt Thriller     April 23, 2020     134
## 28                                Fractured Thriller   October 11, 2019     100
## 29                             The Occupant Thriller     March 25, 2020     103
## 30                                His House Thriller   October 30, 2020      93
## 31                                  Calibre Thriller      June 29, 2018     101
## 32                                 AK vs AK Thriller  December 24, 2020     108
## 33                           Raat Akeli Hai Thriller      July 31, 2020     149
##    IMDB.Score Language
## 1         2.6  Spanish
## 2         4.2  English
## 3         4.4  English
## 4         4.4    Hindi
## 5         4.5  English
## 6         4.8   German
## 7         4.8    Hindi
## 8         5.0  English
## 9         5.1  English
## 10        5.3  English
## 11        5.3  Spanish
## 12        5.3   French
## 13        5.4    Hindi
## 14        5.5 Filipino
## 15        5.5  Swedish
## 16        5.6  English
## 17        5.6  Spanish
## 18        5.7   Polish
## 19        5.7  English
## 20        5.8  English
## 21        5.9  English
## 22        5.9   French
## 23        6.1  Spanish
## 24        6.2  English
## 25        6.2   French
## 26        6.2  Spanish
## 27        6.3   Korean
## 28        6.4  English
## 29        6.4  Spanish
## 30        6.5  English
## 31        6.8  English
## 32        6.9    Hindi
## 33        7.3    Hindi
tw=df %>% filter(df$Runtime >60)
tw
##                                                                                                          Title
## 1                                                                                                  Dark Forces
## 2                                                                                                      The App
## 3                                                                                               The Open House
## 4                                                                                                  Kaali Khuhi
## 5                                                                                                        Drive
## 6                                                                                            Leyla Everlasting
## 7                                                                              The Last Days of American Crime
## 8                                                                                                      Paradox
## 9                                                                                           Sardar Ka Grandson
## 10                                                                                                    The Call
## 11                                                                                                     Whipped
## 12                                                                                          All Because of You
## 13                                                                                                       Mercy
## 14                                                                                               Ghost Stories
## 15                                                                                    The Last Thing He Wanted
## 16                                                                                   What Happened to Mr. Cha?
## 17                                                                                                  Death Note
## 18                                                                           Hello Privilege. It's Me, Chelsea
## 19                                                                                            Secret Obsession
## 20                                                                                                  Sextuplets
## 21                                                                                       The Girl on the Train
## 22                                                                                               Thunder Force
## 23                                                                                                Fatal Affair
## 24                                                                                                Just Say Yes
## 25                                                                                            Seriously Single
## 26                                                                       The Misadventures of Hedi and Cokeman
## 27                                                                                            5 Star Christmas
## 28                                                               I Am the Pretty Thing That Lives in the House
## 29                                                                                                 Paris Is Us
## 30                                                                                                 Rattlesnake
## 31                                                                                                 The Players
## 32                                                                                                  We Are One
## 33                                                                                               Finding Agnes
## 34                                                                                                          IO
## 35                                                                                                  Sentinelle
## 36                                                                                                 The Binding
## 37                                                                                            We Can Be Heroes
## 38                                                                                         Christmas Crossfire
## 39                                                                                                  Coin Heist
## 40                                                                                          Mrs. Serial Killer
## 41                                                                          Nobody Sleeps in the Woods Tonight
## 42                                                                                                 Take the 10
## 43                                                                                              The Main Event
## 44                                                                                            The Ridiculous 6
## 45                                                                                             Earth and Blood
## 46                                                                                                    Fearless
## 47                                                                                                Holiday Rush
## 48                                                                                         The Day of the Lord
## 49                                                                                               Airplane Mode
## 50                                                                                                 How It Ends
## 51                                                                                  Love Like the Falling Rain
## 52                                                                                                     Rebirth
## 53                                                                                                Squared Love
## 54                                                                                                     Cadaver
## 55                                                                                                    Clinical
## 56                                                                                             Coffee & Kareem
## 57                                                                                                        Dude
## 58                                                                                                  Geez & Ann
## 59                                                                                      The Larva Island Movie
## 60                                                                                                #REALITYHIGH
## 61                                                                                                  Desperados
## 62                                                                      Dolly Parton's Christmas on the Square
## 63                                                                                          Father of the Year
## 64                                                                                                   Firebrand
## 65                                                                                                   Ghost Lab
## 66                                                                                            Girlfriend's Day
## 67                                                                           Handsome: A Netflix Mystery Movie
## 68                                                                                             Hubie Halloween
## 69                                                                                                       Ibiza
## 70                                                                                            Rim of the World
## 71                                                                                                Sandy Wexler
## 72                                                                                           See You Yesterday
## 73                                                                                         Strip Down, Rise Up
## 74                                                                                                   Tall Girl
## 75                                                                                                   The Beast
## 76                                                                                                 The Week Of
## 77                                                                       A Christmas Prince: The Royal Wedding
## 78                                                                                              Back to School
## 79                                                                                              Dangerous Lies
## 80                                                                              Gunjan Saxena: The Kargil Girl
## 81                                                                                                   Intuition
## 82                                                                    The Most Assassinated Woman in the World
## 83                                                                                         Things Heard & Seen
## 84                                                                                            To Each, Her Own
## 85                                                                    Who Would You Take to a Deserted Island?
## 86                                                                                                        XOXO
## 87                                                                     A Babysitter's Guide to Monster Hunting
## 88                                                                          A Christmas Prince: The Royal Baby
## 89                                                                                          Despite Everything
## 90                                                                       Dolly Kitty and Those Twinkling Stars
## 91                                                                                    Freaks: You're One of Us
## 92                                                                                             Game Over, Man!
## 93                                                                                                      Guilty
## 94                                                                                           In the Tall Grass
## 95                                                                                               Madame Claude
## 96                                                                                                       Naked
## 97                                                                                            Outside the Wire
## 98                                                                         The Princess Switch: Switched Again
## 99                                                                                      Under the Riccione Sun
## 100                                                                                               Been So Long
## 101                                                                                                  Dead Kids
## 102                                                                                              Get the Grift
## 103                                                                                               House Arrest
## 104                                                                        Kevin Hart's Guide to Black History
## 105                                                                                        Love Wedding Repeat
## 106                                                                                                       Mute
## 107                                                                                                    Òlòt?ré
## 108                                                                                                    Red Dot
## 109                                                                                                Ride or Die
## 110                                                                                               Step Sisters
## 111                                                                                    The Cloverfield Paradox
## 112                                                                                The Knight Before Christmas
## 113                                                                      The Legacy of a Whitetail Deer Hunter
## 114                                                                                                The Package
## 115                                                                                              Unicorn Store
## 116                                                                                               Wine Country
## 117                                                                                                Bomb Scared
## 118                                                                                              Brahman Naman
## 119                                                                                                 Double Dad
## 120                                                                                           Falling Inn Love
## 121                                                                                              Hold the Dark
## 122                                                                                           Love, Guaranteed
## 123                                                                                        One-Way to Tomorrow
## 124                                                                                             The Last Laugh
## 125                                                                                          The Last Paradiso
## 126                                                                                           The Midnight Sky
## 127                                                                                              The Paramedic
## 128                                                                                              The Sleepover
## 129                                                                                     Vampires vs. the Bronx
## 130                                                                                       Why Did You Kill Me?
## 131                                                                                                A Week Away
## 132                                                                                           Caught by a Wave
## 133                                                                                      Christmas Inheritance
## 134                                                                                                 Dad Wanted
## 135                                                                                        El Camino Christmas
## 136                                                                                                        Eli
## 137                                                                                           Ginny Weds Sunny
## 138                                                                                                   Good Sam
## 139                                                                                                  Lionheart
## 140                                                                                                Little Evil
## 141                                                                                                   One Take
## 142                                                                                                Point Blank
## 143                                                                                                 Prime Time
## 144                                                                                                The Do-Over
## 145                                                                                       The Holiday Calendar
## 146                                                                                    The Woman in the Window
## 147                                                                                            The Wrong Missy
## 148                                                                                             Velvet Buzzsaw
## 149                                                                                                    Yes Day
## 150                                                                                                  15 August
## 151                                                                                     A California Christmas
## 152                                                                                         A Christmas Prince
## 153                                                                                        All Day and a Night
## 154                                                                                               American Son
## 155                                                                                                      Barry
## 156                                                                                                  Candy Jar
## 157                                                                                    Choked: Paisa Bolta Hai
## 158                                                                                               Class of '83
## 159                                                                                                 Extinction
## 160                                                                                          Happy Anniversary
## 161                                                                                             I Am All Girls
## 162                                                                                                Let It Snow
## 163                                                                                                    Mascots
## 164                                                                                   Operation Christmas Drop
## 165                                                                                               Rajma Chawal
## 166                                                                                               Rich in Love
## 167                                                                                                Rising High
## 168                                                                                  Sierra Burgess Is a Loser
## 169                                                                                               Small Crimes
## 170                                                                                     Special Correspondents
## 171                                                                                                        TAU
## 172                                                                                            The After Party
## 173                                                                               The Babysitter: Killer Queen
## 174                                                                                           The Claus Family
## 175                                                                                        The Kissing Booth 2
## 176                                                                                           The Perfect Date
## 177                                                                                             What We Wanted
## 178                                                                                            You've Got This
## 179                                                                                                 6 Balloons
## 180                                                                                          A Fall from Grace
## 181                                                                                                    Amateur
## 182                                                                                           Army of the Dead
## 183                                                                                                        Cam
## 184                                                                                            Earthquake Bird
## 185                                                                                                 Horse Girl
## 186                                                                                                      Maska
## 187                                                                                                The Decline
## 188                                                                                             The Polka King
## 189                                                                                                   The Prom
## 190                                                                  True Memoirs of an International Assassin
## 191                                                                                                     Ultras
## 192                                                                                                Come Sunday
## 193                                                                                       Forgive Us Our Debts
## 194                                                                                                       iBoy
## 195                                                                                                 Lovefucked
## 196                                                                                                    Juanita
## 197                                                                                             Murder Mystery
## 198                                                                                              Project Power
## 199                                                                                                    Rebecca
## 200                                                                         The Christmas Chronicles: Part Two
## 201                                                                                          The Kissing Booth
## 202                                                                                        The Princess Switch
## 203                                                                     To All the Boys: P.S. I Still Love You
## 204                                                                                                War Machine
## 205                                                                                              6 Underground
## 206                                                                               Between Two Ferns: The Movie
## 207                                                                                              Burning Sands
## 208                                                                                           Casting JonBenet
## 209                                                                                 Deidra & Laney Rob a Train
## 210                                                                                             Finding 'Ohana
## 211                                                                                                   Holidate
## 212                                                                                        Holiday in the Wild
## 213                                                                                           Hot Girls Wanted
## 214                                                                                                Like Father
## 215                                                                                                 Lost Girls
## 216                                                                                                  Otherhood
## 217                                                                                      Pee-wee's Big Holiday
## 218                                                                                                 Rogue City
## 219                                                                                                     Sergio
## 220                                                                                                Stuck Apart
## 221                                                                                       Tersanjung the Movie
## 222                                                                                                 The Killer
## 223                                                                                              The Lovebirds
## 224                                                                            The Most Hated Woman in America
## 225                                                                                             The Perfection
## 226                                                                              Tribhanga – Tedhi Medhi Crazy
## 227                                                                                            Unknown Origins
## 228                                                                                                    Work It
## 229                                                                                Baggio: The Divine Ponytail
## 230                                                                                                 Below Zero
## 231                                                                                                   Citation
## 232                                                                                     Crazy Awesome Teachers
## 233                                                                              Have You Ever Seen Fireflies?
## 234                                                                                           High Flying Bird
## 235                                                                                  In the Shadow of the Moon
## 236                                                                                                Lost Bullet
## 237                                                                         Octonauts & the Caves of Sac Actun
## 238                                                                                      Offering to the Storm
## 239                                                                                            Roxanne Roxanne
## 240                                                                                              Someone Great
## 241                                                                                       Spenser Confidential
## 242                                                                                  The Land of Steady Habits
## 243                                                                                          The Rachel Divide
## 244                                                                                                    Voyuer 
## 245                                                                                                 Win It All
## 246                                                                                                       1922
## 247                                                                                           Alex Strangelove
## 248                                                                                                    Apostle
## 249                                                                                                      Benji
## 250                                                                                                     Bright
## 251                                                                                                      Cargo
## 252                                                                                            Concrete Cowboy
## 253                                                                                              Feel the Beat
## 254                                                                                               Get the Goat
## 255                                                                                       I Am Not an Easy Man
## 256                                                                                                June & Kopi
## 257                                                                                              Music Teacher
## 258                                                                                       Nail Bomber: Manhunt
## 259                                                                                           Notes for My Son
## 260                                                                                                      Polar
## 261                                                                                                Sand Castle
## 262                                                                                               Shimmer Lake
## 263                                                                                                   Spectral
## 264                                                                                             The Babysitter
## 265                                                                                              The Discovery
## 266                                                                                         The Forest of Love
## 267                                                                                             The Laundromat
## 268                                                                               The Legend of Cocaine Island
## 269                                                                                               The Outsider
## 270                                                                                               Time to Hunt
## 271                                                                        To All the Boys: Always and Forever
## 272                                                                           Travis Scott: Look Mom I Can Fly
## 273                                                                                                   Uncorked
## 274                                                                                      Anelka: Misunderstood
## 275                                                                       Ariana Grande: Excuse Me, I Love You
## 276                                                                                                        ARQ
## 277                                                                                       Como Caído del Cielo
## 278                                                                                                First Match
## 279                                                                                                  Fractured
## 280                                                                                          Irreplaceable You
## 281                                                                                                 Isi & Ossi
## 282                                                                                               Layla Majnun
## 283                                                                   Murder to Mercy: The Cyntoia Brown Story
## 284                                                                                                 My Own Man
## 285                                                                                         Nappily Ever After
## 286                                                                                              Over the Moon
## 287                                                                                                Street Flow
## 288                                                                                              Strong Island
## 289                                                                                            Take Your Pills
## 290                                                                                        The Heartbreak Club
## 291                                                                                        The Mars Generation
## 292                                                                                               The Occupant
## 293                                                                                            The Willoughbys
## 294                                                                                            Triple Frontier
## 295                                                                                             Two Catalonias
## 296                                                                                         Walk. Ride. Rodeo.
## 297                                                                                                   Wheelman
## 298                                                                                          When We First Met
## 299                                                                                      All the Bright Places
## 300                                                                                           All Together Now
## 301                                                                                  Altered Carbon: Resleeved
## 302                                                                                                 Chopsticks
## 303                                                                                                Da 5 Bloods
## 304                                                            Eurovision Song Contest: The Story of Fire Saga
## 305                                                                                              Gerald's Game
## 306                                                                                                  His House
## 307                                                                         Jingle Jangle: A Christmas Journey
## 308                                                                                               Lust Stories
## 309                                                                                                    Monster
## 310                                                                               Mowgli: Legend of the Jungle
## 311                                                                                      Nobody Knows I'm Here
## 312                                                                     Nobody Speak: Trials of the Free Press
## 313                                                                                                     Oxygen
## 314                                                                                                  Set It Up
## 315                                                                               The Incredible Jessica James
## 316                                                                                                  Tigertail
## 317                                                                                                     Tramps
## 318                                                                                                   Bad Trip
## 319                                                                                                   Bird Box
## 320                                                                                                    Bulbbul
## 321                                                                                            Crazy About Her
## 322                                                                                            Elisa & Marcela
## 323                                                                                   I'll Sleep When I'm Dead
## 324                                                                              I'm Thinking of Ending Things
## 325                                                                                         It Takes a Lunatic
## 326                                                                                                  Milestone
## 327                                                                                              Recovery Boys
## 328                                                                                    Shawn Mendes: In Wonder
## 329                                                                                             Space Sweepers
## 330                                                                                          The American Meme
## 331                                                                                                  The Angel
## 332                                                                                       The Crimes That Bind
## 333                                                                                  The Red Sea Diving Resort
## 334                                                                                             A Whisker Away
## 335                                                                                            Ajeeb Daastaans
## 336                                                                                     Arlo the Alligator Boy
## 337                                                                               Bikram: Yogi, Guru, Predator
## 338                                                                                                     Blame!
## 339                                                                                               Blue Miracle
## 340                                                                                              CounterPunch 
## 341                                                                    Crack: Cocaine, Corruption & Conspiracy
## 342                                                                                                 Extraction
## 343                                                                                               Giving Voice
## 344                                                                                            Hillbilly Elegy
## 345                                                                         Hope Frozen: A Quest to Live Twice
## 346                                                                                            Imperial Dreams
## 347                                                                                     Just Another Christmas
## 348                                                                                            Malcolm & Marie
## 349                                                                                                      Moxie
## 350                                                                                          Night in Paradise
## 351                                                                                                Paper Lives
## 352                                                                                   Parchis: The Documentary
## 353                                                                                                   Tallulah
## 354                                                                                              The Old Guard
## 355                                                                           Tony Robbins: I Am Not Your Guru
## 356                                                                                                   Upstarts
## 357                                                                                                    22 July
## 358                                                                                                     7 años
## 359                                                                                A Futile and Stupid Gesture
## 360                                                              A Life of Speed: The Juan Manuel Fangio Story
## 361                                                                                         Always Be My Maybe
## 362                                                                                                   Becoming
## 363                                                                                       Long Live Brij Mohan
## 364                                                                                                    Calibre
## 365                                                                                              Death to 2020
## 366                                                                                        GIMS: On the Record
## 367                                                               Have a Good Trip: Adventures in Psychedelics
## 368                                                                                                 Mercury 13
## 369                                                                                          Saving Capitalism
## 370                                                                                                Serious Men
## 371                                                                                       The Boys in the Band
## 372                                                                                             The Life Ahead
## 373                                                                                 The Other Side of the Wind
## 374                                                                                                To the Bone
## 375                                                                                Tony Parker: The Final Shot
## 376                                                                                                   AK vs AK
## 377                                                                                                Amanda Knox
## 378                                                                               Bigflo & Oil: Hip Hop Frenzy
## 379                                                                              Biggie: I Got a Story to Tell
## 380                                                                 I Don't Feel at Home in This World Anymore
## 381                                                                                                  Laerte-se
## 382                                                                                                       Mank
## 383                                                                                         Our Souls at Night
## 384                                                                                                Outlaw King
## 385                                                                                                   Pagglait
## 386                                                                                              Seeing Allred
## 387                                                                                         Spelling the Dream
## 388                                                                                             The Half of It
## 389                                                                                             The Highwaymen
## 390                                                                  The Meyerowitz Stories (New and Selected)
## 391                                                                        Feminists: What Were They Thinking?
## 392                                                                                        Gaga: Five Foot Two
## 393                                                                                              Kingdom of Us
## 394                                                                      Los Tigres del Norte at Folsom Prison
## 395                                                                                   Ma Rainey's Black Bottom
## 396                                                    Operation Varsity Blues: The College Admissions Scandal
## 397                                                                                                       Pele
## 398                                                                               ReMastered: The Lion's Share
## 399                                                                    ReMastered: The Miami Showband Massacre
## 400                                                                                                Rose Island
## 401                                                                                   The Christmas Chronicles
## 402                                                                                                   The Dirt
## 403                                                                                     The Night Comes for Us
## 404                                                                                                      Beats
## 405                                                                                            Circus of Books
## 406                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 407                                                                                    El Pepe: A Supreme Life
## 408                                                                                                     Evelyn
## 409                                                                                                      Ferry
## 410                                                                                           Grass Is Greener
## 411                                                                        Guillermo Vilas: Settling the Score
## 412                                                                            Joshua: Teenager vs. Superpower
## 413                                                                        Keith Richards: Under the Influence
## 414                                                                                       Knock Down the House
## 415                                                                      Loudon Wainwright III: Surviving Twin
## 416                                                                                  My Beautiful Broken Brain
## 417                                                                                                  One of Us
## 418                                                                                          Pieces of a Woman
## 419                                                                                     The Devil All the Time
## 420                                                                                                    The Dig
## 421                                                                                             The Great Hack
## 422                                                                                            The White Tiger
## 423                                                                          To All the Boys I've Loved Before
## 424                                                                      American Murder: The Family Next Door
## 425                                                                                             Audrie & Daisy
## 426                                                                                First They Killed My Father
## 427                                                               Fyre: The Greatest Party That Never Happened
## 428                                                                                           Into the Inferno
## 429                                                                                               LA Originals
## 430                                                                                       Love per Square Foot
## 431                                                                                                  Paddleton
## 432                                                                                               Private Life
## 433                                                                                                  Seventeen
## 434                                                                                                  Sometimes
## 435                                                                                                       Soni
## 436                                                                                    The 40-Year-Old Version
## 437                                                                                               The Disciple
## 438                                                                                      The Edge of Democracy
## 439                                                                                                   The King
## 440                                                                                    The Siege of Jadotville
## 441                                                                                        Dolemite Is My Name
## 442                                                                            El Camino: A Breaking Bad Movie
## 443                                                                                         Father Soldier Son
## 444                                                                                         Get Me Roger Stone
## 445                                                                                         I'm No Longer Here
## 446                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 447                                                                                                       Okja
## 448                                                                                                 On My Skin
## 449                                                                                             Raat Akeli Hai
## 450                                                                        ReMastered: Massacre at the Stadium
## 451                                                                  ReMastered: The Two Killings of Sam Cooke
## 452                                                                                Secrets of the Saqqara Tomb
## 453                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 454                                                                                            Team Foxcatcher
## 455                                                                               The Ballad of Buster Scruggs
## 456                                                                    The Death and Life of Marsha P. Johnson
## 457                                                                                 The Fundamentals of Caring
## 458                                                           The Other One: The Long Strange Trip of Bob Weir
## 459                                                                                           American Factory
## 460                                                                                             Miss Americana
## 461                                                                              Shawn Mendes: Live in Concert
## 462                                                                                                   Shirkers
## 463                                                                                        The Black Godfather
## 464                                                                              They'll Love Me When I'm Dead
## 465                                                                                                        Tig
## 466                                                                Barbra: The Music, The Mem'ries, The Magic!
## 467                                                                                Blackpink: Light Up the Sky
## 468                                                                                                City of Joy
## 469                                                                                       Dick Johnson Is Dead
## 470                                                                             Homecoming: A Film by Beyonce 
## 471                                                                             Invader Zim: Enter the Florpus
## 472                                                                      Joan Didion: The Center Will Not Hold
## 473                                                                        John Mulaney & the Sack Lunch Bunch
## 474                                                                                              Reversing Roe
## 475                                                                                                  Athlete A
## 476                                                                                                       Ludo
## 477                                                                                                     Quincy
## 478                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 479                                                                                           Tell Me Who I Am
## 480                                                                                          The Bleeding Edge
## 481                                                                                         The Social Dilemma
## 482                                                                                              The Two Popes
## 483                                                                                What Happened, Miss Simone?
## 484                                                                                                 Yeh Ballet
## 485                                                                                        Beasts of No Nation
## 486                                                                           Brene Brown: The Call to Courage
## 487                                                                         Crip Camp: A Disability Revolution
## 488 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 489                                                                     Justin Timberlake + The Tennessee Kids
## 490                                                                                               Road to Roma
## 491                                                                                                       Roma
## 492                                                                                               The Irishman
## 493                                                                                 The Trial of the Chicago 7
## 494                                                                                              A Secret Love
## 495                                                                                                     Icarus
## 496                                                                                             Marriage Story
## 497                                                                                             The Ivory Game
## 498                                                               Struggle: The Life and Lost Art of Szukaiski
## 499                                                                                             Chasing Coral 
## 500                                                                                         My Octopus Teacher
## 501                                                                                             Rising Phoenix
## 502                                                                                                       13th
## 503                                                                          Disclosure: Trans Lives on Screen
## 504                                                                                                      Klaus
## 505                                                                                                 Seaspiracy
## 506                                                                      The Three Deaths of Marisela Escobedo
## 507                                                                                    Cuba and the Cameraman 
## 508                                                                 Ben Platt: Live from Radio City Music Hall
## 509                                                                      Taylor Swift: Reputation Stadium Tour
## 510                                                                Winter on Fire: Ukraine's Fight for Freedom
## 511                                                                                    Springsteen on Broadway
## 512                                                                  Emicida: AmarElo - It's All For Yesterday
## 513                                                                   David Attenborough: A Life on Our Planet
##                                    Genre           Premiere Runtime IMDB.Score
## 1                               Thriller    August 21, 2020      81        2.6
## 2                  Science fiction/Drama  December 26, 2019      79        2.6
## 3                        Horror thriller   January 19, 2018      94        3.2
## 4                                Mystery   October 30, 2020      90        3.4
## 5                                 Action   November 1, 2019     147        3.5
## 6                                 Comedy   December 4, 2020     112        3.7
## 7                    Heist film/Thriller       June 5, 2020     149        3.7
## 8                Musical/Western/Fantasy     March 23, 2018      73        3.9
## 9                                 Comedy       May 18, 2021     139        4.1
## 10                                 Drama  November 27, 2020     112        4.1
## 11                       Romantic comedy September 18, 2020      97        4.1
## 12                         Action comedy    October 1, 2020     101        4.2
## 13                              Thriller  November 22, 2016      90        4.2
## 14                      Horror anthology    January 1, 2020     144        4.3
## 15                    Political thriller  February 21, 2020     115        4.3
## 16                                Comedy    January 1, 2021     102        4.3
## 17                       Horror thriller    August 25, 2017     100        4.4
## 18                           Documentary September 13, 2019      64        4.4
## 19                              Thriller      July 18, 2019      97        4.4
## 20                                Comedy    August 16, 2019      99        4.4
## 21                              Thriller  February 26, 2021     120        4.4
## 22                      Superhero-Comedy      April 9, 2021     105        4.4
## 23                              Thriller      July 16, 2020      89        4.5
## 24                       Romantic comedy      April 2, 2021      97        4.5
## 25                                Comedy      July 31, 2020     107        4.5
## 26                                Comedy  February 10, 2021      99        4.5
## 27                                Comedy   December 7, 2018      95        4.6
## 28                                Horror   October 28, 2016      89        4.6
## 29                         Romance drama  February 22, 2019      83        4.6
## 30                                Horror   October 25, 2019      85        4.6
## 31                                Comedy      July 15, 2020      88        4.6
## 32                           Documentary      July 14, 2020      86        4.6
## 33                                 Drama  November 30, 2020     105        4.7
## 34                 Science fiction/Drama   January 18, 2019      95        4.7
## 35                                Action      March 5, 2021      80        4.7
## 36                                 Drama    October 2, 2020      93        4.7
## 37                             Superhero  December 25, 2020     100        4.7
## 38                              Thriller   December 4, 2020     106        4.8
## 39                                 Heist    January 6, 2017      97        4.8
## 40                              Thriller        May 1, 2020     106        4.8
## 41                                Horror   October 28, 2020     103        4.8
## 42                                Comedy   January 20, 2017      80        4.8
## 43                                Comedy     April 10, 2020     101        4.8
## 44                               Western  December 11, 2015     119        4.8
## 45                                Action     April 17, 2020      80        4.9
## 46                   Animation/Superhero    August 14, 2020      89        4.9
## 47                           Family film  November 28, 2019      94        4.9
## 48                                 Drama   October 30, 2020      93        4.9
## 49                                Comedy   January 23, 2020      96        5.0
## 50                       Action-thriller      July 13, 2018     113        5.0
## 51                                 Drama   October 15, 2020      86        5.0
## 52                              Thriller      July 15, 2016     100        5.0
## 53                       Romantic comedy  February 11, 2021     102        5.0
## 54                                Horror   October 22, 2020      86        5.1
## 55                              Thriller   January 13, 2017     104        5.1
## 56                         Action comedy      April 3, 2020      88        5.1
## 57                     Teen comedy-drama     April 20, 2018      97        5.1
## 58                        Romantic drama  February 25, 2021     105        5.1
## 59                             Animation      July 23, 2020      90        5.1
## 60                                Comedy  September 8, 2017      99        5.2
## 61                       Romantic comedy       July 3, 2020     106        5.2
## 62                     Christmas musical  November 22, 2020      98        5.2
## 63                                Comedy      July 20, 2018      94        5.2
## 64                                 Drama  February 22, 2019     112        5.2
## 65                                Horror       May 26, 2021     117        5.2
## 66                                Comedy  February 14, 2017      70        5.2
## 67                                Comedy        May 5, 2017      81        5.2
## 68                                Comedy    October 7, 2020     103        5.2
## 69                                Comedy       May 25, 2018      94        5.2
## 70             Science fiction adventure       May 24, 2019      98        5.2
## 71                                Comedy     April 14, 2017     131        5.2
## 72                       Science fiction       May 17, 2019      87        5.2
## 73                           Documentary   February 5, 2021     112        5.2
## 74                          Comedy-drama September 13, 2019     102        5.2
## 75                                 Drama  November 27, 2020      99        5.2
## 76                                Comedy     April 27, 2018     116        5.2
## 77                       Romantic comedy  November 30, 2018      92        5.3
## 78                                Comedy    August 30, 2019      83        5.3
## 79                              Thriller     April 30, 2020      97        5.3
## 80                                 Drama    August 12, 2020     112        5.3
## 81                              Thriller       May 28, 2020     116        5.3
## 82                              Thriller  September 7, 2018     102        5.3
## 83                                Horror     April 29, 2021     121        5.3
## 84                       Romantic comedy      June 24, 2018      95        5.3
## 85                                 Drama     April 12, 2019      93        5.3
## 86                                 Drama    August 26, 2016      92        5.3
## 87                 Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 88                       Romantic comedy   December 5, 2019      85        5.4
## 89                                Comedy        May 3, 2019      78        5.4
## 90                                 Drama September 18, 2020     120        5.4
## 91                    Supernatural drama  September 2, 2020      92        5.4
## 92                         Action/Comedy     March 23, 2018     101        5.4
## 93                              Thriller      March 6, 2020     119        5.4
## 94                                Horror    October 4, 2019     101        5.4
## 95                                 Drama      April 2, 2021     112        5.4
## 96                                Comedy    August 11, 2017      96        5.4
## 97                Action/Science fiction   January 15, 2021     114        5.4
## 98                       Romantic comedy  November 19, 2020      97        5.4
## 99                Romantic teenage drama       July 1, 2020     101        5.4
## 100                              Musical   October 26, 2018     100        5.5
## 101                             Thriller   December 1, 2019      94        5.5
## 102                               Comedy     April 28, 2021      94        5.5
## 103                               Comedy  November 15, 2019     104        5.5
## 104                         Variety show   February 8, 2019      63        5.5
## 105                      Romantic comedy     April 10, 2020     100        5.5
## 106              Science fiction/Mystery  February 23, 2018     126        5.5
## 107                          Crime drama    October 2, 2020     106        5.5
## 108                             Thriller  February 11, 2021      86        5.5
## 109         Psychological thriller drama     April 15, 2021     142        5.5
## 110                               Comedy   January 19, 2018     108        5.5
## 111                      Science fiction   February 4, 2018     102        5.5
## 112                      Romantic comedy  November 21, 2019      92        5.5
## 113                     Adventure/Comedy       July 6, 2018      83        5.5
## 114                         Black comedy    August 10, 2018      94        5.5
## 115                               Comedy      April 5, 2019      92        5.5
## 116                               Comedy       May 10, 2019     103        5.5
## 117                         Black comedy   October 12, 2017      89        5.6
## 118                               Comedy       July 7, 2016      95        5.6
## 119                         Comedy-drama   January 15, 2021     103        5.6
## 120                      Romantic comedy    August 29, 2019      97        5.6
## 121                             Thriller September 28, 2018     125        5.6
## 122                      Romantic comedy  September 3, 2020      91        5.6
## 123                              Romance      June 19, 2020      90        5.6
## 124                         Comedy-drama   January 11, 2019      98        5.6
## 125                       Romantic drama   February 5, 2021     107        5.6
## 126                      Science fiction  December 23, 2020     118        5.6
## 127                             Thriller September 16, 2020      94        5.6
## 128                               Comedy    August 21, 2020     103        5.6
## 129                        Horror comedy    October 2, 2020      86        5.6
## 130                          Documentary     April 14, 2021      83        5.6
## 131                    Christian musical     March 26, 2021      97        5.7
## 132                  Romantic teen drama     March 25, 2021      99        5.7
## 133                       Romantic drama  December 15, 2017     104        5.7
## 134                               Family September 11, 2020     102        5.7
## 135                          Dark comedy   December 8, 2017      89        5.7
## 136                               Horror   October 18, 2019      98        5.7
## 137                      Romantic comedy    October 9, 2020     125        5.7
## 138                                Drama       May 16, 2019      89        5.7
## 139                               Comedy    January 4, 2019      94        5.7
## 140                        Comedy horror  September 1, 2017      94        5.7
## 141                          Documentary      June 18, 2020      85        5.7
## 142                               Action      July 12, 2019      86        5.7
## 143                             Thriller     April 14, 2021      91        5.7
## 144                        Action comedy       May 27, 2016     108        5.7
## 145                      Romantic comedy   November 2, 2018      95        5.7
## 146               Psychological thriller       May 14, 2021     100        5.7
## 147                               Comedy       May 13, 2020      90        5.7
## 148                             Thriller   February 1, 2019     112        5.7
## 149                               Comedy     March 12, 2021      86        5.7
## 150                         Comedy-drama     March 29, 2019     124        5.8
## 151                      Romantic comedy  December 14, 2020     107        5.8
## 152                      Romantic comedy  November 17, 2017      92        5.8
## 153                                Drama        May 1, 2020     121        5.8
## 154                                Drama   November 1, 2019      90        5.8
## 155                               Biopic  December 16, 2016     104        5.8
## 156                               Comedy     April 27, 2018      92        5.8
## 157                                Drama       June 5, 2020     114        5.8
## 158                                Drama    August 21, 2020      98        5.8
## 159             Science fiction/Thriller      July 27, 2018      95        5.8
## 160                      Romantic comedy     March 30, 2018      78        5.8
## 161                             Thriller       May 14, 2021     107        5.8
## 162                      Romantic comedy   November 8, 2019      92        5.8
## 163                         Mockumentary   October 13, 2016      95        5.8
## 164                      Romantic comedy   November 5, 2020      96        5.8
## 165                         Comedy-drama  November 30, 2018     118        5.8
## 166                      Romantic comedy     April 30, 2020     105        5.8
## 167                               Satire     April 17, 2020      94        5.8
## 168                Romantic comedy-drama  September 7, 2018     105        5.8
## 169                          Dark comedy     April 28, 2017      95        5.8
## 170                               Satire     April 29, 2016     100        5.8
## 171             Science fiction/Thriller      June 29, 2018      97        5.8
## 172                               Comedy    August 24, 2018      89        5.8
## 173                        Comedy/Horror September 10, 2020     102        5.8
## 174                              Fantasy   December 7, 2020      96        5.8
## 175                      Romantic comedy      July 24, 2020     131        5.8
## 176                      Romantic comedy     April 12, 2019      89        5.8
## 177                                Drama  November 11, 2020      93        5.8
## 178                      Romantic comedy    October 2, 2020     111        5.8
## 179                                Drama      April 6, 2018      75        5.9
## 180                             Thriller   January 17, 2020     120        5.9
## 181                         Sports-drama      April 6, 2018      96        5.9
## 182                         Zombie/Heist       May 21, 2021     148        5.9
## 183                 Psychological horror  November 16, 2018      94        5.9
## 184                              Mystery  November 15, 2019     107        5.9
## 185                                Drama   February 7, 2020     104        5.9
## 186                      Romantic comedy     March 27, 2020     111        5.9
## 187                             Thriller     March 27, 2020      83        5.9
## 188                         Comedy-drama   January 12, 2018      95        5.9
## 189                              Musical  December 11, 2020     132        5.9
## 190                        Action comedy  November 11, 2016      98        5.9
## 191                          Sports film     March 20, 2020     108        5.9
## 192                               Biopic     April 13, 2018     106        6.0
## 193                                Drama        May 4, 2018     104        6.0
## 194             Science fiction/Thriller   January 27, 2017      90        6.0
## 195                                Drama     August 9, 2019     106        6.0
## 196                                Drama      March 8, 2019      90        6.0
## 197                       Comedy mystery      June 14, 2019      97        6.0
## 198                            Superhero    August 14, 2020     113        6.0
## 199                    Romantic thriller   October 21, 2020     123        6.0
## 200                     Christmas comedy  November 25, 2020     115        6.0
## 201                      Romantic comedy       May 11, 2018     105        6.0
## 202                      Romantic comedy  November 16, 2018     101        6.0
## 203                      Romantic comedy  February 12, 2020     102        6.0
## 204                           War-Comedy       May 26, 2017     122        6.0
## 205                               Action  December 13, 2019     128        6.1
## 206                               Comedy September 20, 2019      82        6.1
## 207                                Drama     March 10, 2017     102        6.1
## 208                          Documentary     April 28, 2017      80        6.1
## 209                                Drama     March 17, 2017      94        6.1
## 210                               Family   January 29, 2021     123        6.1
## 211              Romantic comedy/Holiday   October 28, 2020     104        6.1
## 212                    Adventure-romance   November 1, 2019      85        6.1
## 213                          Documentary       May 29, 2015      84        6.1
## 214                               Comedy     August 3, 2018     103        6.1
## 215                          Crime drama     March 13, 2020      95        6.1
## 216                               Comedy     August 2, 2019     100        6.1
## 217                            Adventure     March 18, 2016      89        6.1
## 218                          Crime drama   October 30, 2020     116        6.1
## 219                               Biopic     April 17, 2020     118        6.1
## 220                                Drama    January 8, 2021      96        6.1
## 221                                Drama      April 1, 2021     114        6.1
## 222                              Western  November 10, 2017      99        6.1
## 223                      Romantic comedy       May 22, 2020      87        6.1
## 224                               Biopic     March 24, 2017      92        6.1
## 225                      Horror-thriller       May 24, 2019      90        6.1
## 226                                Drama   January 15, 2021      95        6.1
## 227                             Thriller    August 28, 2020      96        6.1
## 228                         Dance comedy     August 7, 2020      93        6.1
## 229                               Biopic       May 26, 2021      92        6.2
## 230                                Drama   January 29, 2021     106        6.2
## 231                                Drama   November 6, 2020     151        6.2
## 232                         Comedy-drama    August 17, 2020     101        6.2
## 233                               Comedy      April 9, 2021     114        6.2
## 234                         Sports-drama   February 8, 2019      90        6.2
## 235                             Thriller September 27, 2019     115        6.2
## 236                             Thriller      June 19, 2020      92        6.2
## 237                            Animation    August 14, 2020      72        6.2
## 238                             Thriller      July 24, 2020     139        6.2
## 239                               Biopic     March 23, 2018      98        6.2
## 240                      Romantic comedy     April 19, 2019      92        6.2
## 241                        Action comedy      March 6, 2020     111        6.2
## 242                                Drama September 14, 2018      98        6.2
## 243                          Documentary     April 27, 2018     104        6.2
## 244                          Documentary   December 1, 2017      95        6.2
## 245                               Comedy      April 7, 2017      88        6.2
## 246                   Horror/Crime drama   October 20, 2017     102        6.3
## 247                      Romantic comedy       June 8, 2018      99        6.3
## 248                      Horror-thriller   October 12, 2018     129        6.3
## 249                          Family film     March 16, 2018      87        6.3
## 250                        Urban fantasy  December 22, 2017     117        6.3
## 251                         Drama/Horror       May 18, 2018     104        6.3
## 252                                Drama      April 2, 2021     111        6.3
## 253                  Family/Comedy-drama      June 19, 2020     107        6.3
## 254                               Comedy     March 18, 2021      97        6.3
## 255                      Romantic comedy     April 13, 2018      98        6.3
## 256                                Drama   January 28, 2021      90        6.3
## 257                                Drama     April 19, 2019     101        6.3
## 258                          Documentary       May 26, 2021      72        6.3
## 259                                Drama  November 24, 2020      83        6.3
## 260                               Action   January 25, 2019     118        6.3
## 261                                  War     April 21, 2017     113        6.3
## 262                       Crime thriller       June 9, 2017      86        6.3
## 263               Science fiction/Action   December 9, 2016     108        6.3
## 264                   Teen comedy horror   October 13, 2017      85        6.3
## 265                Science fiction/Drama     March 31, 2017     102        6.3
## 266                                Drama   October 11, 2019     151        6.3
## 267                         Comedy-drama   October 18, 2019      98        6.3
## 268                          Documentary     March 29, 2019      87        6.3
## 269                          Crime drama      March 9, 2018     120        6.3
## 270                             Thriller     April 23, 2020     134        6.3
## 271                      Romantic comedy  February 12, 2021     109        6.3
## 272                          Documentary    August 28, 2019      85        6.3
## 273                                Drama     March 27, 2020     103        6.3
## 274                          Documentary     August 5, 2020      94        6.4
## 275                         Concert Film  December 21, 2020      97        6.4
## 276             Science fiction/Thriller September 16, 2016      88        6.4
## 277                       Musical comedy  December 24, 2019     112        6.4
## 278                         Sports-drama     March 30, 2018     102        6.4
## 279                             Thriller   October 11, 2019     100        6.4
## 280                                Drama  February 16, 2018      96        6.4
## 281                      Romantic comedy  February 14, 2020     113        6.4
## 282                       Romantic drama  February 11, 2021     119        6.4
## 283                          Documentary     April 29, 2020      97        6.4
## 284                          Documentary  December 13, 2014      81        6.4
## 285                         Comedy-drama September 21, 2018      98        6.4
## 286          Animation/Musical/Adventure   October 23, 2020      95        6.4
## 287                                Drama   October 12, 2019      96        6.4
## 288                          Documentary September 15. 2017     107        6.4
## 289                          Documentary     March 16, 2018      87        6.4
## 290                         Comedy-drama   January 14, 2021     101        6.4
## 291                          Documentary        May 5, 2017      97        6.4
## 292                             Thriller     March 25, 2020     103        6.4
## 293           Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 294                      Action-thriller     March 13, 2019     125        6.4
## 295                          Documentary September 28, 2018     116        6.4
## 296                                Drama      March 8, 2019      99        6.4
## 297                      Action thriller   October 20, 2017      82        6.4
## 298                      Romantic comedy   February 9, 2018      97        6.4
## 299                              Romance  February 28, 2020     108        6.5
## 300                                Drama    August 28, 2020      93        6.5
## 301                Anime/Science fiction     March 19, 2020      74        6.5
## 302                               Comedy       May 31, 2019     100        6.5
## 303                            War drama      June 12, 2020     155        6.5
## 304                       Musical comedy      June 26, 2020     123        6.5
## 305                      Horror thriller September 29, 2017     103        6.5
## 306                             Thriller   October 30, 2020      93        6.5
## 307             Family/Christmas musical  November 13, 2020     119        6.5
## 308                                Drama      June 15, 2018     120        6.5
## 309                                Drama        May 7, 2021      98        6.5
## 310                            Adventure   December 7, 2018     104        6.5
## 311                                Drama      June 24, 2020      91        6.5
## 312                          Documentary      June 23, 2017      95        6.5
## 313             Science fiction thriller       May 12, 2021     101        6.5
## 314                      Romantic comedy      June 15, 2018     105        6.5
## 315                               Comedy      July 28, 2017      83        6.5
## 316                                Drama     April 10, 2020      91        6.5
## 317                              Romance     April 21, 2017      83        6.5
## 318           Hidden-camera prank comedy     March 26, 2021      86        6.6
## 319               Psychological thriller  December 21, 2018     124        6.6
## 320                               Horror      June 24, 2020      94        6.6
## 321                      Romantic comedy  February 26, 2021     102        6.6
## 322                              Romance       June 7, 2019     118        6.6
## 323                          Documentary    August 19, 2016      79        6.6
## 324               Psychological thriller  September 4, 2020     134        6.6
## 325                          Documentary   October 25, 2019     126        6.6
## 326                                Drama        May 7, 2021      98        6.6
## 327                          Documentary      June 29, 2018      89        6.6
## 328                          Documentary  November 23, 2020      83        6.6
## 329                      Science fiction   February 5, 2021     136        6.6
## 330                          Documentary   December 7, 2018      98        6.6
## 331                         Spy thriller September 14, 2018     114        6.6
## 332                          Crime drama    August 20, 2020      99        6.6
## 333                         Spy thriller      July 31, 2019     130        6.6
## 334                        Anime/Fantasy      June 18, 2020     104        6.7
## 335                                Drama     April 16, 2021     142        6.7
## 336              Animated musical comedy     April 16, 2021      92        6.7
## 337                          Documentary  November 20, 2019      86        6.7
## 338                Anime/Science fiction       May 20, 2017     106        6.7
## 339                                Drama       May 27, 2021      95        6.7
## 340                          Documentary      June 16, 2017      91        6.7
## 341                          Documentary   January 11, 2021      89        6.7
## 342                               Action     April 24, 2020     117        6.7
## 343                          Documentary  December 11, 2020      90        6.7
## 344                                Drama  November 24, 2020     117        6.7
## 345                          Documentary September 15, 2020      80        6.7
## 346                                Drama   February 3, 2017      87        6.7
## 347                               Comedy   December 3, 2020     101        6.7
## 348                       Romantic drama   February 5, 2021     106        6.7
## 349                                Drama      March 3, 2021     111        6.7
## 350                                Drama      April 9, 2021     132        6.7
## 351                                Drama     March 12, 2021      97        6.7
## 352                          Documentary      July 10, 2019     106        6.7
## 353                         Comedy-drama      July 29, 2016     111        6.7
## 354                     Superhero/Action      July 10, 2020     124        6.7
## 355                          Documentary      July 15. 2016     116        6.7
## 356                                Drama   October 18, 2019     112        6.7
## 357                                Drama   October 10, 2018     144        6.8
## 358                                Drama   October 28, 2016      76        6.8
## 359                  Biographical/Comedy   January 26, 2018     101        6.8
## 360                          Documentary     March 20, 2020      92        6.8
## 361                      Romantic comedy       May 31, 2019     102        6.8
## 362                          Documentary        May 6, 2020      89        6.8
## 363                               Comedy     August 3, 2018     105        6.8
## 364                             Thriller      June 29, 2018     101        6.8
## 365                               Comedy  December 27, 2020      70        6.8
## 366                          Documentary September 17, 2020      96        6.8
## 367                          Documentary       May 11, 2020      85        6.8
## 368                          Documentary     April 20, 2018      79        6.8
## 369                          Documentary  November 21, 2017      73        6.8
## 370                                Drama    October 2, 2020     114        6.8
## 371                                Drama September 30, 2020     121        6.8
## 372                                Drama  November 13, 2020      95        6.8
## 373                                Drama   November 2, 2018     122        6.8
## 374                                Drama      July 14, 2017     107        6.8
## 375                          Documentary    January 6, 2021      98        6.8
## 376                             Thriller  December 24, 2020     108        6.9
## 377                          Documentary September 30, 2016      92        6.9
## 378                          Documentary    October 8, 2020     100        6.9
## 379                          Documentary      March 1, 2021      97        6.9
## 380                                Drama  February 24, 2017      96        6.9
## 381                          Documentary       May 19, 2017     100        6.9
## 382                               Biopic   December 4, 2020     132        6.9
## 383                              Romance September 29, 2017     103        6.9
## 384                      Historical-epic   November 9, 2018     121        6.9
## 385                         Comedy-drama     March 26, 2021     114        6.9
## 386                          Documentary   February 9, 2018      95        6.9
## 387                          Documentary       June 3, 2020      83        6.9
## 388                              Romance        May 1, 2020     105        6.9
## 389                          Crime drama     March 29, 2019     131        6.9
## 390                         Comedy-drama   October 13, 2017     112        6.9
## 391                          Documentary   October 12, 2018      86        7.0
## 392                          Documentary September 22, 2017     100        7.0
## 393                          Documentary   October 13, 2017     109        7.0
## 394                          Documentary September 15, 2019      64        7.0
## 395                                Drama  December 18, 2020      94        7.0
## 396                          Documentary     March 17, 2021      99        7.0
## 397                          Documentary  February 23, 2021     108        7.0
## 398                          Documentary       May 17, 2019      84        7.0
## 399                          Documentary     March 22, 2019      70        7.0
## 400                               Comedy   December 9, 2020     117        7.0
## 401   Christmas/Fantasy/Adventure/Comedy  November 22, 2018     104        7.0
## 402                               Biopic     March 22, 2019     108        7.0
## 403                      Action-thriller   October 19, 2018     121        7.0
## 404                                Drama      June 19, 2019     110        7.1
## 405                          Documentary     April 22, 2020      92        7.1
## 406                          Documentary  November 27, 2020      80        7.1
## 407                          Documentary  December 27, 2019      73        7.1
## 408                          Documentary September 10, 2019      96        7.1
## 409                          Crime drama       May 14, 2021     106        7.1
## 410                          Documentary     April 20, 2019      97        7.1
## 411                          Documentary   October 27, 2020      94        7.1
## 412                          Documentary       May 26, 2017      78        7.1
## 413                          Documentary September 18, 2015      81        7.1
## 414                          Documentary        May 1, 2019      87        7.1
## 415                         One-man show  November 13, 2018      91        7.1
## 416                          Documentary     March 18, 2016      91        7.1
## 417                          Documentary   October 20, 2017      95        7.1
## 418                                Drama    January 7, 2021     126        7.1
## 419               Psychological thriller September 16, 2020     138        7.1
## 420                                Drama   January 29, 2021     112        7.1
## 421                          Documentary      July 24, 2019     114        7.1
## 422                                Drama   January 22, 2021     125        7.1
## 423                      Romantic comedy    August 17, 2018      99        7.1
## 424                          Documentary September 30, 2020      82        7.2
## 425                          Documentary September 23, 2016      98        7.2
## 426                                Drama September 15, 2017     136        7.2
## 427                          Documentary   January 18, 2019      97        7.2
## 428                          Documentary   October 28, 2016     107        7.2
## 429                          Documentary     April 10, 2020      92        7.2
## 430                      Romantic comedy  February 14, 2018     133        7.2
## 431                         Drama-Comedy  February 22, 2019      89        7.2
## 432                                Drama    October 5, 2018     124        7.2
## 433           Coming-of-age comedy-drama   October 18, 2019      99        7.2
## 434                                Drama        May 1, 2018     101        7.2
## 435                          Crime drama   January 18, 2019      97        7.2
## 436                               Comedy    October 9, 2020     124        7.2
## 437                                Drama     April 30, 2021     129        7.2
## 438                          Documentary      June 19, 2019     121        7.2
## 439                     Historical drama   November 1, 2019     140        7.2
## 440                                  War    October 7, 2016     108        7.2
## 441                               Biopic   October 25, 2019     118        7.3
## 442                          Crime drama   October 11, 2019     121        7.3
## 443                          Documentary      July 17, 2020     100        7.3
## 444                          Documentary       May 12, 2017     101        7.3
## 445                                Drama       May 27, 2020     105        7.3
## 446                          Documentary       July 8, 2020      96        7.3
## 447                     Action-adventure      June 28, 2017     121        7.3
## 448                          Crime drama September 12, 2018     100        7.3
## 449                             Thriller      July 31, 2020     149        7.3
## 450                          Documentary   January 11, 2019      64        7.3
## 451                          Documentary   February 8, 2019      64        7.3
## 452                          Documentary   October 28, 2020     114        7.3
## 453                          Documentary   October 14, 2016      79        7.3
## 454                          Documentary     April 29, 2016      90        7.3
## 455                              Western  November 16, 2018     132        7.3
## 456                          Documentary    October 6, 2017     105        7.3
## 457                         Comedy-drama      June 24, 2016      97        7.3
## 458                          Documentary       May 22, 2015      83        7.3
## 459                          Documentary    August 21, 2019     110        7.4
## 460                          Documentary   January 31, 2020      85        7.4
## 461                         Concert Film  November 25, 2020      87        7.4
## 462                          Documentary   October 26, 2018      97        7.4
## 463                          Documentary       June 7, 2019     118        7.4
## 464                          Documentary   November 2, 2018      98        7.4
## 465                          Documentary      July 17, 2015      80        7.4
## 466                         Concert Film  November 22, 2017     108        7.5
## 467                          Documentary   October 14, 2020      79        7.5
## 468                          Documentary  September 7, 2018      74        7.5
## 469                          Documentary    October 2, 2020      90        7.5
## 470                          Documentary     April 17, 2019     137        7.5
## 471          Animation / Science Fiction    August 16, 2019      71        7.5
## 472                          Documentary   October 27. 2017      98        7.5
## 473                         Variety show  December 24, 2019      70        7.5
## 474                          Documentary September 13, 2018      99        7.5
## 475                          Documentary      June 24, 2020     104        7.6
## 476                Anthology/Dark comedy  November 12, 2020     149        7.6
## 477                          Documentary September 21, 2018     124        7.6
## 478                          Documentary      June 12, 2019     144        7.6
## 479                          Documentary   October 18, 2019      85        7.6
## 480                          Documentary      July 27, 2018     100        7.6
## 481                          Documentary  September 9, 2020      94        7.6
## 482                                Drama  December 20, 2019     125        7.6
## 483                          Documentary      June 26, 2015      84        7.6
## 484                                Drama  February 21, 2020     117        7.6
## 485                            War drama   October 16, 2015     136        7.7
## 486                          Documentary     April 19, 2019      76        7.7
## 487                          Documentary     March 25, 2020     108        7.7
## 488                          Documentary  November 17, 2017      94        7.7
## 489                         Concert Film   October 12, 2016      90        7.7
## 490                            Making-of  February 11, 2020      72        7.7
## 491                                Drama  December 14, 2018     135        7.7
## 492                          Crime drama  November 27, 2019     209        7.8
## 493                                Drama   October 16, 2020     130        7.8
## 494                          Documentary     April 29, 2020      82        7.9
## 495                          Documentary     August 4, 2017     120        7.9
## 496                                Drama   December 6, 2019     136        7.9
## 497                          Documentary   November 4, 2016     112        7.9
## 498                          Documentary  December 21, 2018     105        8.0
## 499                          Documentary      July 14, 2017      89        8.1
## 500                          Documentary  September 7, 2020      85        8.1
## 501                          Documentary    August 26, 2020     106        8.1
## 502                          Documentary    October 7, 2016     100        8.2
## 503                          Documentary      June 19, 2020     107        8.2
## 504 Animation/Christmas/Comedy/Adventure  November 15, 2019      97        8.2
## 505                          Documentary     March 24, 2021      89        8.2
## 506                          Documentary   October 14, 2020     109        8.2
## 507                          Documentary  November 24, 2017     114        8.3
## 508                         Concert Film       May 20, 2020      85        8.4
## 509                         Concert Film  December 31, 2018     125        8.4
## 510                          Documentary    October 9, 2015      91        8.4
## 511                         One-man show  December 16, 2018     153        8.5
## 512                          Documentary   December 8, 2020      89        8.6
## 513                          Documentary    October 4, 2020      83        9.0
##                       Language
## 1                      Spanish
## 2                      Italian
## 3                      English
## 4                        Hindi
## 5                        Hindi
## 6                      Turkish
## 7                      English
## 8                      English
## 9                        Hindi
## 10                      Korean
## 11                  Indonesian
## 12                       Malay
## 13                     English
## 14                       Hindi
## 15                     English
## 16                      Korean
## 17                     English
## 18                     English
## 19                     English
## 20                     English
## 21                       Hindi
## 22                     English
## 23                     English
## 24                       Dutch
## 25                     English
## 26                      French
## 27                     Italian
## 28                     English
## 29                      French
## 30                     English
## 31                     Italian
## 32                      French
## 33                    Filipino
## 34                     English
## 35                      French
## 36                     Italian
## 37                     English
## 38                      German
## 39                     English
## 40                       Hindi
## 41                      Polish
## 42                     English
## 43                     English
## 44                     English
## 45                      French
## 46                     English
## 47                     English
## 48                     Spanish
## 49                  Portuguese
## 50                     English
## 51                  Indonesian
## 52                     English
## 53                      Polish
## 54                   Norwegian
## 55                     English
## 56                     English
## 57                     English
## 58                  Indonesian
## 59                     English
## 60                     English
## 61                     English
## 62                     English
## 63                     English
## 64                     Marathi
## 65                        Thai
## 66                     English
## 67                     English
## 68                     English
## 69                     English
## 70                     English
## 71                     English
## 72                     English
## 73                     English
## 74                     English
## 75                     Italian
## 76                     English
## 77                     English
## 78                      French
## 79                     English
## 80                       Hindi
## 81                     Spanish
## 82                      French
## 83                     English
## 84                      French
## 85                     Spanish
## 86                     English
## 87                     English
## 88                     English
## 89                     Spanish
## 90                       Hindi
## 91                      German
## 92                     English
## 93                       Hindi
## 94                     English
## 95                      French
## 96                     English
## 97                     English
## 98                     English
## 99                     Italian
## 100                    English
## 101                   Filipino
## 102                 Portuguese
## 103                      Hindi
## 104                    English
## 105                    English
## 106                    English
## 107                    English
## 108                    Swedish
## 109                   Japanese
## 110                    English
## 111                    English
## 112                    English
## 113                    English
## 114                    English
## 115                    English
## 116                    English
## 117             Spanish/Basque
## 118                    English
## 119                 Portuguese
## 120                    English
## 121                    English
## 122                    English
## 123                    Turkish
## 124                    English
## 125                    Italian
## 126                    English
## 127                    Spanish
## 128                    English
## 129                    English
## 130                    English
## 131                    English
## 132                    Italian
## 133                    English
## 134                    Spanish
## 135                    English
## 136                    English
## 137                      Hindi
## 138                    English
## 139                    English
## 140                    English
## 141                       Thai
## 142                    English
## 143                     Polish
## 144                    English
## 145                    English
## 146                    English
## 147                    English
## 148                    English
## 149                    English
## 150                    Marathi
## 151                    English
## 152                    English
## 153                    English
## 154                    English
## 155                    English
## 156                    English
## 157                      Hindi
## 158                      Hindi
## 159                    English
## 160                    English
## 161                    English
## 162                    English
## 163                    English
## 164                    English
## 165                      Hindi
## 166                 Portuguese
## 167                     German
## 168                    English
## 169                    English
## 170                    English
## 171                    English
## 172                    English
## 173                    English
## 174                      Dutch
## 175                    English
## 176                    English
## 177                     German
## 178                    Spanish
## 179                    English
## 180                    English
## 181                    English
## 182                    English
## 183                    English
## 184                    English
## 185                    English
## 186                      Hindi
## 187                     French
## 188                    English
## 189                    English
## 190                    English
## 191                    Italian
## 192                    English
## 193                    Italian
## 194                    English
## 195                      Hindi
## 196                    English
## 197                    English
## 198                    English
## 199                    English
## 200                    English
## 201                    English
## 202                    English
## 203                    English
## 204                    English
## 205                    English
## 206                    English
## 207                    English
## 208                    English
## 209                    English
## 210                    English
## 211                    English
## 212                    English
## 213                    English
## 214                    English
## 215                    English
## 216                    English
## 217                    English
## 218                     French
## 219                    English
## 220                    Turkish
## 221                 Indonesian
## 222                 Portuguese
## 223                    English
## 224                    English
## 225                    English
## 226                      Hindi
## 227                    Spanish
## 228                    English
## 229                    Italian
## 230                    Spanish
## 231                    English
## 232                 Indonesian
## 233                    Turkish
## 234                    English
## 235                    English
## 236                     French
## 237                    English
## 238                    Spanish
## 239                    English
## 240                    English
## 241                    English
## 242                    English
## 243                    English
## 244                    English
## 245                    English
## 246                    English
## 247                    English
## 248                    English
## 249                    English
## 250                    English
## 251                    English
## 252                    English
## 253                    English
## 254                 Portuguese
## 255                     French
## 256                 Indonesian
## 257                      Hindi
## 258                    English
## 259                    Spanish
## 260                    English
## 261                    English
## 262                    English
## 263                    English
## 264                    English
## 265                    English
## 266                   Japanese
## 267                    English
## 268                    English
## 269           English/Japanese
## 270                     Korean
## 271                    English
## 272                    English
## 273                    English
## 274                     French
## 275                    English
## 276                    English
## 277                    Spanish
## 278                    English
## 279                    English
## 280                    English
## 281                     German
## 282                 Indonesian
## 283                    English
## 284                    English
## 285                    English
## 286                    English
## 287                     French
## 288                    English
## 289                    English
## 290                 Indonesian
## 291                    English
## 292                    Spanish
## 293                    English
## 294                    English
## 295            Spanish/Catalan
## 296                    English
## 297                    English
## 298                    English
## 299                    English
## 300                    English
## 301                   Japanese
## 302                      Hindi
## 303                    English
## 304                    English
## 305                    English
## 306                    English
## 307                    English
## 308                      Hindi
## 309                    English
## 310                    English
## 311                    Spanish
## 312                    English
## 313                     French
## 314                    English
## 315                    English
## 316 English/Taiwanese/Mandarin
## 317                    English
## 318                    English
## 319                    English
## 320                      Hindi
## 321                    Spanish
## 322                    Spanish
## 323                    English
## 324                    English
## 325                    English
## 326                      Hindi
## 327                    English
## 328                    English
## 329                     Korean
## 330                    English
## 331                    English
## 332                    Spanish
## 333                    English
## 334                   Japanese
## 335                      Hindi
## 336                    English
## 337                    English
## 338                   Japanese
## 339                    English
## 340                    English
## 341                    English
## 342                    English
## 343                    English
## 344                    English
## 345               Thia/English
## 346                    English
## 347                 Portuguese
## 348                    English
## 349                    English
## 350                     Korean
## 351                    Turkish
## 352                    Spanish
## 353                    English
## 354                    English
## 355                    English
## 356                      Hindi
## 357                    English
## 358                    Spanish
## 359                    English
## 360                    Spanish
## 361                    English
## 362                    English
## 363                      Hindi
## 364                    English
## 365                    English
## 366                     French
## 367                    English
## 368                    English
## 369                    English
## 370                      Hindi
## 371                    English
## 372                    Italian
## 373                    English
## 374                    English
## 375                     French
## 376                      Hindi
## 377                    English
## 378                     French
## 379                    English
## 380                    English
## 381                 Portuguese
## 382                    English
## 383                    English
## 384                    English
## 385                      Hindi
## 386                    English
## 387                    English
## 388                    English
## 389                    English
## 390                    English
## 391                    English
## 392                    English
## 393                    English
## 394                    Spanish
## 395                    English
## 396                    English
## 397                    English
## 398                    English
## 399                    English
## 400                    Italian
## 401                    English
## 402                    English
## 403                 Indonesian
## 404                    English
## 405                    English
## 406                    English
## 407                    Spanish
## 408                    English
## 409                      Dutch
## 410                    English
## 411                    Spanish
## 412                    English
## 413                    English
## 414                    English
## 415                    English
## 416                    English
## 417                    English
## 418                    English
## 419                    English
## 420                    English
## 421                    English
## 422                    English
## 423                    English
## 424                    English
## 425                    English
## 426       Khmer/English/French
## 427                    English
## 428                    English
## 429                    English
## 430                      Hindi
## 431                    English
## 432                    English
## 433                    Spanish
## 434                      Tamil
## 435                      Hindi
## 436                    English
## 437                    Marathi
## 438                 Portuguese
## 439                    English
## 440                    English
## 441                    English
## 442                    English
## 443                    English
## 444                    English
## 445                    Spanish
## 446            Spanish/English
## 447             English/Korean
## 448                    Italian
## 449                      Hindi
## 450            English/Spanish
## 451                    English
## 452             English/Arabic
## 453           English/Mandarin
## 454            English/Russian
## 455                    English
## 456                    English
## 457                    English
## 458                    English
## 459                    English
## 460                    English
## 461                    English
## 462                    English
## 463                    English
## 464                    English
## 465                    English
## 466                    English
## 467                     Korean
## 468                    English
## 469                    English
## 470                    English
## 471                    English
## 472                    English
## 473                    English
## 474                    English
## 475                    English
## 476                      Hindi
## 477                    English
## 478                    English
## 479                    English
## 480                    English
## 481                    English
## 482                    English
## 483                    English
## 484                      Hindi
## 485               English/Akan
## 486                    English
## 487                    English
## 488                    English
## 489                    English
## 490                    Spanish
## 491                    Spanish
## 492                    English
## 493                    English
## 494                    English
## 495                    English
## 496                    English
## 497                    English
## 498                    English
## 499                    English
## 500                    English
## 501                    English
## 502                    English
## 503                    English
## 504                    English
## 505                    English
## 506                    Spanish
## 507                    English
## 508                    English
## 509                    English
## 510   English/Ukranian/Russian
## 511                    English
## 512                 Portuguese
## 513                    English
tw=df %>% filter(df$Runtime >60 & df$Runtime <120)
tw
##                                                                                                          Title
## 1                                                                                                  Dark Forces
## 2                                                                                                      The App
## 3                                                                                               The Open House
## 4                                                                                                  Kaali Khuhi
## 5                                                                                            Leyla Everlasting
## 6                                                                                                      Paradox
## 7                                                                                                     The Call
## 8                                                                                                      Whipped
## 9                                                                                           All Because of You
## 10                                                                                                       Mercy
## 11                                                                                    The Last Thing He Wanted
## 12                                                                                   What Happened to Mr. Cha?
## 13                                                                                                  Death Note
## 14                                                                           Hello Privilege. It's Me, Chelsea
## 15                                                                                            Secret Obsession
## 16                                                                                                  Sextuplets
## 17                                                                                               Thunder Force
## 18                                                                                                Fatal Affair
## 19                                                                                                Just Say Yes
## 20                                                                                            Seriously Single
## 21                                                                       The Misadventures of Hedi and Cokeman
## 22                                                                                            5 Star Christmas
## 23                                                               I Am the Pretty Thing That Lives in the House
## 24                                                                                                 Paris Is Us
## 25                                                                                                 Rattlesnake
## 26                                                                                                 The Players
## 27                                                                                                  We Are One
## 28                                                                                               Finding Agnes
## 29                                                                                                          IO
## 30                                                                                                  Sentinelle
## 31                                                                                                 The Binding
## 32                                                                                            We Can Be Heroes
## 33                                                                                         Christmas Crossfire
## 34                                                                                                  Coin Heist
## 35                                                                                          Mrs. Serial Killer
## 36                                                                          Nobody Sleeps in the Woods Tonight
## 37                                                                                                 Take the 10
## 38                                                                                              The Main Event
## 39                                                                                            The Ridiculous 6
## 40                                                                                             Earth and Blood
## 41                                                                                                    Fearless
## 42                                                                                                Holiday Rush
## 43                                                                                         The Day of the Lord
## 44                                                                                               Airplane Mode
## 45                                                                                                 How It Ends
## 46                                                                                  Love Like the Falling Rain
## 47                                                                                                     Rebirth
## 48                                                                                                Squared Love
## 49                                                                                                     Cadaver
## 50                                                                                                    Clinical
## 51                                                                                             Coffee & Kareem
## 52                                                                                                        Dude
## 53                                                                                                  Geez & Ann
## 54                                                                                      The Larva Island Movie
## 55                                                                                                #REALITYHIGH
## 56                                                                                                  Desperados
## 57                                                                      Dolly Parton's Christmas on the Square
## 58                                                                                          Father of the Year
## 59                                                                                                   Firebrand
## 60                                                                                                   Ghost Lab
## 61                                                                                            Girlfriend's Day
## 62                                                                           Handsome: A Netflix Mystery Movie
## 63                                                                                             Hubie Halloween
## 64                                                                                                       Ibiza
## 65                                                                                            Rim of the World
## 66                                                                                           See You Yesterday
## 67                                                                                         Strip Down, Rise Up
## 68                                                                                                   Tall Girl
## 69                                                                                                   The Beast
## 70                                                                                                 The Week Of
## 71                                                                       A Christmas Prince: The Royal Wedding
## 72                                                                                              Back to School
## 73                                                                                              Dangerous Lies
## 74                                                                              Gunjan Saxena: The Kargil Girl
## 75                                                                                                   Intuition
## 76                                                                    The Most Assassinated Woman in the World
## 77                                                                                            To Each, Her Own
## 78                                                                    Who Would You Take to a Deserted Island?
## 79                                                                                                        XOXO
## 80                                                                     A Babysitter's Guide to Monster Hunting
## 81                                                                          A Christmas Prince: The Royal Baby
## 82                                                                                          Despite Everything
## 83                                                                                    Freaks: You're One of Us
## 84                                                                                             Game Over, Man!
## 85                                                                                                      Guilty
## 86                                                                                           In the Tall Grass
## 87                                                                                               Madame Claude
## 88                                                                                                       Naked
## 89                                                                                            Outside the Wire
## 90                                                                         The Princess Switch: Switched Again
## 91                                                                                      Under the Riccione Sun
## 92                                                                                                Been So Long
## 93                                                                                                   Dead Kids
## 94                                                                                               Get the Grift
## 95                                                                                                House Arrest
## 96                                                                         Kevin Hart's Guide to Black History
## 97                                                                                         Love Wedding Repeat
## 98                                                                                                     Òlòt?ré
## 99                                                                                                     Red Dot
## 100                                                                                               Step Sisters
## 101                                                                                    The Cloverfield Paradox
## 102                                                                                The Knight Before Christmas
## 103                                                                      The Legacy of a Whitetail Deer Hunter
## 104                                                                                                The Package
## 105                                                                                              Unicorn Store
## 106                                                                                               Wine Country
## 107                                                                                                Bomb Scared
## 108                                                                                              Brahman Naman
## 109                                                                                                 Double Dad
## 110                                                                                           Falling Inn Love
## 111                                                                                           Love, Guaranteed
## 112                                                                                        One-Way to Tomorrow
## 113                                                                                             The Last Laugh
## 114                                                                                          The Last Paradiso
## 115                                                                                           The Midnight Sky
## 116                                                                                              The Paramedic
## 117                                                                                              The Sleepover
## 118                                                                                     Vampires vs. the Bronx
## 119                                                                                       Why Did You Kill Me?
## 120                                                                                                A Week Away
## 121                                                                                           Caught by a Wave
## 122                                                                                      Christmas Inheritance
## 123                                                                                                 Dad Wanted
## 124                                                                                        El Camino Christmas
## 125                                                                                                        Eli
## 126                                                                                                   Good Sam
## 127                                                                                                  Lionheart
## 128                                                                                                Little Evil
## 129                                                                                                   One Take
## 130                                                                                                Point Blank
## 131                                                                                                 Prime Time
## 132                                                                                                The Do-Over
## 133                                                                                       The Holiday Calendar
## 134                                                                                    The Woman in the Window
## 135                                                                                            The Wrong Missy
## 136                                                                                             Velvet Buzzsaw
## 137                                                                                                    Yes Day
## 138                                                                                     A California Christmas
## 139                                                                                         A Christmas Prince
## 140                                                                                               American Son
## 141                                                                                                      Barry
## 142                                                                                                  Candy Jar
## 143                                                                                    Choked: Paisa Bolta Hai
## 144                                                                                               Class of '83
## 145                                                                                                 Extinction
## 146                                                                                          Happy Anniversary
## 147                                                                                             I Am All Girls
## 148                                                                                                Let It Snow
## 149                                                                                                    Mascots
## 150                                                                                   Operation Christmas Drop
## 151                                                                                               Rajma Chawal
## 152                                                                                               Rich in Love
## 153                                                                                                Rising High
## 154                                                                                  Sierra Burgess Is a Loser
## 155                                                                                               Small Crimes
## 156                                                                                     Special Correspondents
## 157                                                                                                        TAU
## 158                                                                                            The After Party
## 159                                                                               The Babysitter: Killer Queen
## 160                                                                                           The Claus Family
## 161                                                                                           The Perfect Date
## 162                                                                                             What We Wanted
## 163                                                                                            You've Got This
## 164                                                                                                 6 Balloons
## 165                                                                                                    Amateur
## 166                                                                                                        Cam
## 167                                                                                            Earthquake Bird
## 168                                                                                                 Horse Girl
## 169                                                                                                      Maska
## 170                                                                                                The Decline
## 171                                                                                             The Polka King
## 172                                                                  True Memoirs of an International Assassin
## 173                                                                                                     Ultras
## 174                                                                                                Come Sunday
## 175                                                                                       Forgive Us Our Debts
## 176                                                                                                       iBoy
## 177                                                                                                 Lovefucked
## 178                                                                                                    Juanita
## 179                                                                                             Murder Mystery
## 180                                                                                              Project Power
## 181                                                                         The Christmas Chronicles: Part Two
## 182                                                                                          The Kissing Booth
## 183                                                                                        The Princess Switch
## 184                                                                     To All the Boys: P.S. I Still Love You
## 185                                                                               Between Two Ferns: The Movie
## 186                                                                                              Burning Sands
## 187                                                                                           Casting JonBenet
## 188                                                                                 Deidra & Laney Rob a Train
## 189                                                                                                   Holidate
## 190                                                                                        Holiday in the Wild
## 191                                                                                           Hot Girls Wanted
## 192                                                                                                Like Father
## 193                                                                                                 Lost Girls
## 194                                                                                                  Otherhood
## 195                                                                                      Pee-wee's Big Holiday
## 196                                                                                                 Rogue City
## 197                                                                                                     Sergio
## 198                                                                                                Stuck Apart
## 199                                                                                       Tersanjung the Movie
## 200                                                                                                 The Killer
## 201                                                                                              The Lovebirds
## 202                                                                            The Most Hated Woman in America
## 203                                                                                             The Perfection
## 204                                                                              Tribhanga – Tedhi Medhi Crazy
## 205                                                                                            Unknown Origins
## 206                                                                                                    Work It
## 207                                                                                Baggio: The Divine Ponytail
## 208                                                                                                 Below Zero
## 209                                                                                     Crazy Awesome Teachers
## 210                                                                              Have You Ever Seen Fireflies?
## 211                                                                                           High Flying Bird
## 212                                                                                  In the Shadow of the Moon
## 213                                                                                                Lost Bullet
## 214                                                                         Octonauts & the Caves of Sac Actun
## 215                                                                                            Roxanne Roxanne
## 216                                                                                              Someone Great
## 217                                                                                       Spenser Confidential
## 218                                                                                  The Land of Steady Habits
## 219                                                                                          The Rachel Divide
## 220                                                                                                    Voyuer 
## 221                                                                                                 Win It All
## 222                                                                                                       1922
## 223                                                                                           Alex Strangelove
## 224                                                                                                      Benji
## 225                                                                                                     Bright
## 226                                                                                                      Cargo
## 227                                                                                            Concrete Cowboy
## 228                                                                                              Feel the Beat
## 229                                                                                               Get the Goat
## 230                                                                                       I Am Not an Easy Man
## 231                                                                                                June & Kopi
## 232                                                                                              Music Teacher
## 233                                                                                       Nail Bomber: Manhunt
## 234                                                                                           Notes for My Son
## 235                                                                                                      Polar
## 236                                                                                                Sand Castle
## 237                                                                                               Shimmer Lake
## 238                                                                                                   Spectral
## 239                                                                                             The Babysitter
## 240                                                                                              The Discovery
## 241                                                                                             The Laundromat
## 242                                                                               The Legend of Cocaine Island
## 243                                                                        To All the Boys: Always and Forever
## 244                                                                           Travis Scott: Look Mom I Can Fly
## 245                                                                                                   Uncorked
## 246                                                                                      Anelka: Misunderstood
## 247                                                                       Ariana Grande: Excuse Me, I Love You
## 248                                                                                                        ARQ
## 249                                                                                       Como Caído del Cielo
## 250                                                                                                First Match
## 251                                                                                                  Fractured
## 252                                                                                          Irreplaceable You
## 253                                                                                                 Isi & Ossi
## 254                                                                                               Layla Majnun
## 255                                                                   Murder to Mercy: The Cyntoia Brown Story
## 256                                                                                                 My Own Man
## 257                                                                                         Nappily Ever After
## 258                                                                                              Over the Moon
## 259                                                                                                Street Flow
## 260                                                                                              Strong Island
## 261                                                                                            Take Your Pills
## 262                                                                                        The Heartbreak Club
## 263                                                                                        The Mars Generation
## 264                                                                                               The Occupant
## 265                                                                                            The Willoughbys
## 266                                                                                             Two Catalonias
## 267                                                                                         Walk. Ride. Rodeo.
## 268                                                                                                   Wheelman
## 269                                                                                          When We First Met
## 270                                                                                      All the Bright Places
## 271                                                                                           All Together Now
## 272                                                                                  Altered Carbon: Resleeved
## 273                                                                                                 Chopsticks
## 274                                                                                              Gerald's Game
## 275                                                                                                  His House
## 276                                                                         Jingle Jangle: A Christmas Journey
## 277                                                                                                    Monster
## 278                                                                               Mowgli: Legend of the Jungle
## 279                                                                                      Nobody Knows I'm Here
## 280                                                                     Nobody Speak: Trials of the Free Press
## 281                                                                                                     Oxygen
## 282                                                                                                  Set It Up
## 283                                                                               The Incredible Jessica James
## 284                                                                                                  Tigertail
## 285                                                                                                     Tramps
## 286                                                                                                   Bad Trip
## 287                                                                                                    Bulbbul
## 288                                                                                            Crazy About Her
## 289                                                                                            Elisa & Marcela
## 290                                                                                   I'll Sleep When I'm Dead
## 291                                                                                                  Milestone
## 292                                                                                              Recovery Boys
## 293                                                                                    Shawn Mendes: In Wonder
## 294                                                                                          The American Meme
## 295                                                                                                  The Angel
## 296                                                                                       The Crimes That Bind
## 297                                                                                             A Whisker Away
## 298                                                                                     Arlo the Alligator Boy
## 299                                                                               Bikram: Yogi, Guru, Predator
## 300                                                                                                     Blame!
## 301                                                                                               Blue Miracle
## 302                                                                                              CounterPunch 
## 303                                                                    Crack: Cocaine, Corruption & Conspiracy
## 304                                                                                                 Extraction
## 305                                                                                               Giving Voice
## 306                                                                                            Hillbilly Elegy
## 307                                                                         Hope Frozen: A Quest to Live Twice
## 308                                                                                            Imperial Dreams
## 309                                                                                     Just Another Christmas
## 310                                                                                            Malcolm & Marie
## 311                                                                                                      Moxie
## 312                                                                                                Paper Lives
## 313                                                                                   Parchis: The Documentary
## 314                                                                                                   Tallulah
## 315                                                                           Tony Robbins: I Am Not Your Guru
## 316                                                                                                   Upstarts
## 317                                                                                                     7 años
## 318                                                                                A Futile and Stupid Gesture
## 319                                                              A Life of Speed: The Juan Manuel Fangio Story
## 320                                                                                         Always Be My Maybe
## 321                                                                                                   Becoming
## 322                                                                                       Long Live Brij Mohan
## 323                                                                                                    Calibre
## 324                                                                                              Death to 2020
## 325                                                                                        GIMS: On the Record
## 326                                                               Have a Good Trip: Adventures in Psychedelics
## 327                                                                                                 Mercury 13
## 328                                                                                          Saving Capitalism
## 329                                                                                                Serious Men
## 330                                                                                             The Life Ahead
## 331                                                                                                To the Bone
## 332                                                                                Tony Parker: The Final Shot
## 333                                                                                                   AK vs AK
## 334                                                                                                Amanda Knox
## 335                                                                               Bigflo & Oil: Hip Hop Frenzy
## 336                                                                              Biggie: I Got a Story to Tell
## 337                                                                 I Don't Feel at Home in This World Anymore
## 338                                                                                                  Laerte-se
## 339                                                                                         Our Souls at Night
## 340                                                                                                   Pagglait
## 341                                                                                              Seeing Allred
## 342                                                                                         Spelling the Dream
## 343                                                                                             The Half of It
## 344                                                                  The Meyerowitz Stories (New and Selected)
## 345                                                                        Feminists: What Were They Thinking?
## 346                                                                                        Gaga: Five Foot Two
## 347                                                                                              Kingdom of Us
## 348                                                                      Los Tigres del Norte at Folsom Prison
## 349                                                                                   Ma Rainey's Black Bottom
## 350                                                    Operation Varsity Blues: The College Admissions Scandal
## 351                                                                                                       Pele
## 352                                                                               ReMastered: The Lion's Share
## 353                                                                    ReMastered: The Miami Showband Massacre
## 354                                                                                                Rose Island
## 355                                                                                   The Christmas Chronicles
## 356                                                                                                   The Dirt
## 357                                                                                                      Beats
## 358                                                                                            Circus of Books
## 359                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 360                                                                                    El Pepe: A Supreme Life
## 361                                                                                                     Evelyn
## 362                                                                                                      Ferry
## 363                                                                                           Grass Is Greener
## 364                                                                        Guillermo Vilas: Settling the Score
## 365                                                                            Joshua: Teenager vs. Superpower
## 366                                                                        Keith Richards: Under the Influence
## 367                                                                                       Knock Down the House
## 368                                                                      Loudon Wainwright III: Surviving Twin
## 369                                                                                  My Beautiful Broken Brain
## 370                                                                                                  One of Us
## 371                                                                                                    The Dig
## 372                                                                                             The Great Hack
## 373                                                                          To All the Boys I've Loved Before
## 374                                                                      American Murder: The Family Next Door
## 375                                                                                             Audrie & Daisy
## 376                                                               Fyre: The Greatest Party That Never Happened
## 377                                                                                           Into the Inferno
## 378                                                                                               LA Originals
## 379                                                                                                  Paddleton
## 380                                                                                                  Seventeen
## 381                                                                                                  Sometimes
## 382                                                                                                       Soni
## 383                                                                                    The Siege of Jadotville
## 384                                                                                        Dolemite Is My Name
## 385                                                                                         Father Soldier Son
## 386                                                                                         Get Me Roger Stone
## 387                                                                                         I'm No Longer Here
## 388                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 389                                                                                                 On My Skin
## 390                                                                        ReMastered: Massacre at the Stadium
## 391                                                                  ReMastered: The Two Killings of Sam Cooke
## 392                                                                                Secrets of the Saqqara Tomb
## 393                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 394                                                                                            Team Foxcatcher
## 395                                                                    The Death and Life of Marsha P. Johnson
## 396                                                                                 The Fundamentals of Caring
## 397                                                           The Other One: The Long Strange Trip of Bob Weir
## 398                                                                                           American Factory
## 399                                                                                             Miss Americana
## 400                                                                              Shawn Mendes: Live in Concert
## 401                                                                                                   Shirkers
## 402                                                                                        The Black Godfather
## 403                                                                              They'll Love Me When I'm Dead
## 404                                                                                                        Tig
## 405                                                                Barbra: The Music, The Mem'ries, The Magic!
## 406                                                                                Blackpink: Light Up the Sky
## 407                                                                                                City of Joy
## 408                                                                                       Dick Johnson Is Dead
## 409                                                                             Invader Zim: Enter the Florpus
## 410                                                                      Joan Didion: The Center Will Not Hold
## 411                                                                        John Mulaney & the Sack Lunch Bunch
## 412                                                                                              Reversing Roe
## 413                                                                                                  Athlete A
## 414                                                                                           Tell Me Who I Am
## 415                                                                                          The Bleeding Edge
## 416                                                                                         The Social Dilemma
## 417                                                                                What Happened, Miss Simone?
## 418                                                                                                 Yeh Ballet
## 419                                                                           Brene Brown: The Call to Courage
## 420                                                                         Crip Camp: A Disability Revolution
## 421 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 422                                                                     Justin Timberlake + The Tennessee Kids
## 423                                                                                               Road to Roma
## 424                                                                                              A Secret Love
## 425                                                                                             The Ivory Game
## 426                                                               Struggle: The Life and Lost Art of Szukaiski
## 427                                                                                             Chasing Coral 
## 428                                                                                         My Octopus Teacher
## 429                                                                                             Rising Phoenix
## 430                                                                                                       13th
## 431                                                                          Disclosure: Trans Lives on Screen
## 432                                                                                                      Klaus
## 433                                                                                                 Seaspiracy
## 434                                                                      The Three Deaths of Marisela Escobedo
## 435                                                                                    Cuba and the Cameraman 
## 436                                                                 Ben Platt: Live from Radio City Music Hall
## 437                                                                Winter on Fire: Ukraine's Fight for Freedom
## 438                                                                  Emicida: AmarElo - It's All For Yesterday
## 439                                                                   David Attenborough: A Life on Our Planet
##                                    Genre           Premiere Runtime IMDB.Score
## 1                               Thriller    August 21, 2020      81        2.6
## 2                  Science fiction/Drama  December 26, 2019      79        2.6
## 3                        Horror thriller   January 19, 2018      94        3.2
## 4                                Mystery   October 30, 2020      90        3.4
## 5                                 Comedy   December 4, 2020     112        3.7
## 6                Musical/Western/Fantasy     March 23, 2018      73        3.9
## 7                                  Drama  November 27, 2020     112        4.1
## 8                        Romantic comedy September 18, 2020      97        4.1
## 9                          Action comedy    October 1, 2020     101        4.2
## 10                              Thriller  November 22, 2016      90        4.2
## 11                    Political thriller  February 21, 2020     115        4.3
## 12                                Comedy    January 1, 2021     102        4.3
## 13                       Horror thriller    August 25, 2017     100        4.4
## 14                           Documentary September 13, 2019      64        4.4
## 15                              Thriller      July 18, 2019      97        4.4
## 16                                Comedy    August 16, 2019      99        4.4
## 17                      Superhero-Comedy      April 9, 2021     105        4.4
## 18                              Thriller      July 16, 2020      89        4.5
## 19                       Romantic comedy      April 2, 2021      97        4.5
## 20                                Comedy      July 31, 2020     107        4.5
## 21                                Comedy  February 10, 2021      99        4.5
## 22                                Comedy   December 7, 2018      95        4.6
## 23                                Horror   October 28, 2016      89        4.6
## 24                         Romance drama  February 22, 2019      83        4.6
## 25                                Horror   October 25, 2019      85        4.6
## 26                                Comedy      July 15, 2020      88        4.6
## 27                           Documentary      July 14, 2020      86        4.6
## 28                                 Drama  November 30, 2020     105        4.7
## 29                 Science fiction/Drama   January 18, 2019      95        4.7
## 30                                Action      March 5, 2021      80        4.7
## 31                                 Drama    October 2, 2020      93        4.7
## 32                             Superhero  December 25, 2020     100        4.7
## 33                              Thriller   December 4, 2020     106        4.8
## 34                                 Heist    January 6, 2017      97        4.8
## 35                              Thriller        May 1, 2020     106        4.8
## 36                                Horror   October 28, 2020     103        4.8
## 37                                Comedy   January 20, 2017      80        4.8
## 38                                Comedy     April 10, 2020     101        4.8
## 39                               Western  December 11, 2015     119        4.8
## 40                                Action     April 17, 2020      80        4.9
## 41                   Animation/Superhero    August 14, 2020      89        4.9
## 42                           Family film  November 28, 2019      94        4.9
## 43                                 Drama   October 30, 2020      93        4.9
## 44                                Comedy   January 23, 2020      96        5.0
## 45                       Action-thriller      July 13, 2018     113        5.0
## 46                                 Drama   October 15, 2020      86        5.0
## 47                              Thriller      July 15, 2016     100        5.0
## 48                       Romantic comedy  February 11, 2021     102        5.0
## 49                                Horror   October 22, 2020      86        5.1
## 50                              Thriller   January 13, 2017     104        5.1
## 51                         Action comedy      April 3, 2020      88        5.1
## 52                     Teen comedy-drama     April 20, 2018      97        5.1
## 53                        Romantic drama  February 25, 2021     105        5.1
## 54                             Animation      July 23, 2020      90        5.1
## 55                                Comedy  September 8, 2017      99        5.2
## 56                       Romantic comedy       July 3, 2020     106        5.2
## 57                     Christmas musical  November 22, 2020      98        5.2
## 58                                Comedy      July 20, 2018      94        5.2
## 59                                 Drama  February 22, 2019     112        5.2
## 60                                Horror       May 26, 2021     117        5.2
## 61                                Comedy  February 14, 2017      70        5.2
## 62                                Comedy        May 5, 2017      81        5.2
## 63                                Comedy    October 7, 2020     103        5.2
## 64                                Comedy       May 25, 2018      94        5.2
## 65             Science fiction adventure       May 24, 2019      98        5.2
## 66                       Science fiction       May 17, 2019      87        5.2
## 67                           Documentary   February 5, 2021     112        5.2
## 68                          Comedy-drama September 13, 2019     102        5.2
## 69                                 Drama  November 27, 2020      99        5.2
## 70                                Comedy     April 27, 2018     116        5.2
## 71                       Romantic comedy  November 30, 2018      92        5.3
## 72                                Comedy    August 30, 2019      83        5.3
## 73                              Thriller     April 30, 2020      97        5.3
## 74                                 Drama    August 12, 2020     112        5.3
## 75                              Thriller       May 28, 2020     116        5.3
## 76                              Thriller  September 7, 2018     102        5.3
## 77                       Romantic comedy      June 24, 2018      95        5.3
## 78                                 Drama     April 12, 2019      93        5.3
## 79                                 Drama    August 26, 2016      92        5.3
## 80                 Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 81                       Romantic comedy   December 5, 2019      85        5.4
## 82                                Comedy        May 3, 2019      78        5.4
## 83                    Supernatural drama  September 2, 2020      92        5.4
## 84                         Action/Comedy     March 23, 2018     101        5.4
## 85                              Thriller      March 6, 2020     119        5.4
## 86                                Horror    October 4, 2019     101        5.4
## 87                                 Drama      April 2, 2021     112        5.4
## 88                                Comedy    August 11, 2017      96        5.4
## 89                Action/Science fiction   January 15, 2021     114        5.4
## 90                       Romantic comedy  November 19, 2020      97        5.4
## 91                Romantic teenage drama       July 1, 2020     101        5.4
## 92                               Musical   October 26, 2018     100        5.5
## 93                              Thriller   December 1, 2019      94        5.5
## 94                                Comedy     April 28, 2021      94        5.5
## 95                                Comedy  November 15, 2019     104        5.5
## 96                          Variety show   February 8, 2019      63        5.5
## 97                       Romantic comedy     April 10, 2020     100        5.5
## 98                           Crime drama    October 2, 2020     106        5.5
## 99                              Thriller  February 11, 2021      86        5.5
## 100                               Comedy   January 19, 2018     108        5.5
## 101                      Science fiction   February 4, 2018     102        5.5
## 102                      Romantic comedy  November 21, 2019      92        5.5
## 103                     Adventure/Comedy       July 6, 2018      83        5.5
## 104                         Black comedy    August 10, 2018      94        5.5
## 105                               Comedy      April 5, 2019      92        5.5
## 106                               Comedy       May 10, 2019     103        5.5
## 107                         Black comedy   October 12, 2017      89        5.6
## 108                               Comedy       July 7, 2016      95        5.6
## 109                         Comedy-drama   January 15, 2021     103        5.6
## 110                      Romantic comedy    August 29, 2019      97        5.6
## 111                      Romantic comedy  September 3, 2020      91        5.6
## 112                              Romance      June 19, 2020      90        5.6
## 113                         Comedy-drama   January 11, 2019      98        5.6
## 114                       Romantic drama   February 5, 2021     107        5.6
## 115                      Science fiction  December 23, 2020     118        5.6
## 116                             Thriller September 16, 2020      94        5.6
## 117                               Comedy    August 21, 2020     103        5.6
## 118                        Horror comedy    October 2, 2020      86        5.6
## 119                          Documentary     April 14, 2021      83        5.6
## 120                    Christian musical     March 26, 2021      97        5.7
## 121                  Romantic teen drama     March 25, 2021      99        5.7
## 122                       Romantic drama  December 15, 2017     104        5.7
## 123                               Family September 11, 2020     102        5.7
## 124                          Dark comedy   December 8, 2017      89        5.7
## 125                               Horror   October 18, 2019      98        5.7
## 126                                Drama       May 16, 2019      89        5.7
## 127                               Comedy    January 4, 2019      94        5.7
## 128                        Comedy horror  September 1, 2017      94        5.7
## 129                          Documentary      June 18, 2020      85        5.7
## 130                               Action      July 12, 2019      86        5.7
## 131                             Thriller     April 14, 2021      91        5.7
## 132                        Action comedy       May 27, 2016     108        5.7
## 133                      Romantic comedy   November 2, 2018      95        5.7
## 134               Psychological thriller       May 14, 2021     100        5.7
## 135                               Comedy       May 13, 2020      90        5.7
## 136                             Thriller   February 1, 2019     112        5.7
## 137                               Comedy     March 12, 2021      86        5.7
## 138                      Romantic comedy  December 14, 2020     107        5.8
## 139                      Romantic comedy  November 17, 2017      92        5.8
## 140                                Drama   November 1, 2019      90        5.8
## 141                               Biopic  December 16, 2016     104        5.8
## 142                               Comedy     April 27, 2018      92        5.8
## 143                                Drama       June 5, 2020     114        5.8
## 144                                Drama    August 21, 2020      98        5.8
## 145             Science fiction/Thriller      July 27, 2018      95        5.8
## 146                      Romantic comedy     March 30, 2018      78        5.8
## 147                             Thriller       May 14, 2021     107        5.8
## 148                      Romantic comedy   November 8, 2019      92        5.8
## 149                         Mockumentary   October 13, 2016      95        5.8
## 150                      Romantic comedy   November 5, 2020      96        5.8
## 151                         Comedy-drama  November 30, 2018     118        5.8
## 152                      Romantic comedy     April 30, 2020     105        5.8
## 153                               Satire     April 17, 2020      94        5.8
## 154                Romantic comedy-drama  September 7, 2018     105        5.8
## 155                          Dark comedy     April 28, 2017      95        5.8
## 156                               Satire     April 29, 2016     100        5.8
## 157             Science fiction/Thriller      June 29, 2018      97        5.8
## 158                               Comedy    August 24, 2018      89        5.8
## 159                        Comedy/Horror September 10, 2020     102        5.8
## 160                              Fantasy   December 7, 2020      96        5.8
## 161                      Romantic comedy     April 12, 2019      89        5.8
## 162                                Drama  November 11, 2020      93        5.8
## 163                      Romantic comedy    October 2, 2020     111        5.8
## 164                                Drama      April 6, 2018      75        5.9
## 165                         Sports-drama      April 6, 2018      96        5.9
## 166                 Psychological horror  November 16, 2018      94        5.9
## 167                              Mystery  November 15, 2019     107        5.9
## 168                                Drama   February 7, 2020     104        5.9
## 169                      Romantic comedy     March 27, 2020     111        5.9
## 170                             Thriller     March 27, 2020      83        5.9
## 171                         Comedy-drama   January 12, 2018      95        5.9
## 172                        Action comedy  November 11, 2016      98        5.9
## 173                          Sports film     March 20, 2020     108        5.9
## 174                               Biopic     April 13, 2018     106        6.0
## 175                                Drama        May 4, 2018     104        6.0
## 176             Science fiction/Thriller   January 27, 2017      90        6.0
## 177                                Drama     August 9, 2019     106        6.0
## 178                                Drama      March 8, 2019      90        6.0
## 179                       Comedy mystery      June 14, 2019      97        6.0
## 180                            Superhero    August 14, 2020     113        6.0
## 181                     Christmas comedy  November 25, 2020     115        6.0
## 182                      Romantic comedy       May 11, 2018     105        6.0
## 183                      Romantic comedy  November 16, 2018     101        6.0
## 184                      Romantic comedy  February 12, 2020     102        6.0
## 185                               Comedy September 20, 2019      82        6.1
## 186                                Drama     March 10, 2017     102        6.1
## 187                          Documentary     April 28, 2017      80        6.1
## 188                                Drama     March 17, 2017      94        6.1
## 189              Romantic comedy/Holiday   October 28, 2020     104        6.1
## 190                    Adventure-romance   November 1, 2019      85        6.1
## 191                          Documentary       May 29, 2015      84        6.1
## 192                               Comedy     August 3, 2018     103        6.1
## 193                          Crime drama     March 13, 2020      95        6.1
## 194                               Comedy     August 2, 2019     100        6.1
## 195                            Adventure     March 18, 2016      89        6.1
## 196                          Crime drama   October 30, 2020     116        6.1
## 197                               Biopic     April 17, 2020     118        6.1
## 198                                Drama    January 8, 2021      96        6.1
## 199                                Drama      April 1, 2021     114        6.1
## 200                              Western  November 10, 2017      99        6.1
## 201                      Romantic comedy       May 22, 2020      87        6.1
## 202                               Biopic     March 24, 2017      92        6.1
## 203                      Horror-thriller       May 24, 2019      90        6.1
## 204                                Drama   January 15, 2021      95        6.1
## 205                             Thriller    August 28, 2020      96        6.1
## 206                         Dance comedy     August 7, 2020      93        6.1
## 207                               Biopic       May 26, 2021      92        6.2
## 208                                Drama   January 29, 2021     106        6.2
## 209                         Comedy-drama    August 17, 2020     101        6.2
## 210                               Comedy      April 9, 2021     114        6.2
## 211                         Sports-drama   February 8, 2019      90        6.2
## 212                             Thriller September 27, 2019     115        6.2
## 213                             Thriller      June 19, 2020      92        6.2
## 214                            Animation    August 14, 2020      72        6.2
## 215                               Biopic     March 23, 2018      98        6.2
## 216                      Romantic comedy     April 19, 2019      92        6.2
## 217                        Action comedy      March 6, 2020     111        6.2
## 218                                Drama September 14, 2018      98        6.2
## 219                          Documentary     April 27, 2018     104        6.2
## 220                          Documentary   December 1, 2017      95        6.2
## 221                               Comedy      April 7, 2017      88        6.2
## 222                   Horror/Crime drama   October 20, 2017     102        6.3
## 223                      Romantic comedy       June 8, 2018      99        6.3
## 224                          Family film     March 16, 2018      87        6.3
## 225                        Urban fantasy  December 22, 2017     117        6.3
## 226                         Drama/Horror       May 18, 2018     104        6.3
## 227                                Drama      April 2, 2021     111        6.3
## 228                  Family/Comedy-drama      June 19, 2020     107        6.3
## 229                               Comedy     March 18, 2021      97        6.3
## 230                      Romantic comedy     April 13, 2018      98        6.3
## 231                                Drama   January 28, 2021      90        6.3
## 232                                Drama     April 19, 2019     101        6.3
## 233                          Documentary       May 26, 2021      72        6.3
## 234                                Drama  November 24, 2020      83        6.3
## 235                               Action   January 25, 2019     118        6.3
## 236                                  War     April 21, 2017     113        6.3
## 237                       Crime thriller       June 9, 2017      86        6.3
## 238               Science fiction/Action   December 9, 2016     108        6.3
## 239                   Teen comedy horror   October 13, 2017      85        6.3
## 240                Science fiction/Drama     March 31, 2017     102        6.3
## 241                         Comedy-drama   October 18, 2019      98        6.3
## 242                          Documentary     March 29, 2019      87        6.3
## 243                      Romantic comedy  February 12, 2021     109        6.3
## 244                          Documentary    August 28, 2019      85        6.3
## 245                                Drama     March 27, 2020     103        6.3
## 246                          Documentary     August 5, 2020      94        6.4
## 247                         Concert Film  December 21, 2020      97        6.4
## 248             Science fiction/Thriller September 16, 2016      88        6.4
## 249                       Musical comedy  December 24, 2019     112        6.4
## 250                         Sports-drama     March 30, 2018     102        6.4
## 251                             Thriller   October 11, 2019     100        6.4
## 252                                Drama  February 16, 2018      96        6.4
## 253                      Romantic comedy  February 14, 2020     113        6.4
## 254                       Romantic drama  February 11, 2021     119        6.4
## 255                          Documentary     April 29, 2020      97        6.4
## 256                          Documentary  December 13, 2014      81        6.4
## 257                         Comedy-drama September 21, 2018      98        6.4
## 258          Animation/Musical/Adventure   October 23, 2020      95        6.4
## 259                                Drama   October 12, 2019      96        6.4
## 260                          Documentary September 15. 2017     107        6.4
## 261                          Documentary     March 16, 2018      87        6.4
## 262                         Comedy-drama   January 14, 2021     101        6.4
## 263                          Documentary        May 5, 2017      97        6.4
## 264                             Thriller     March 25, 2020     103        6.4
## 265           Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 266                          Documentary September 28, 2018     116        6.4
## 267                                Drama      March 8, 2019      99        6.4
## 268                      Action thriller   October 20, 2017      82        6.4
## 269                      Romantic comedy   February 9, 2018      97        6.4
## 270                              Romance  February 28, 2020     108        6.5
## 271                                Drama    August 28, 2020      93        6.5
## 272                Anime/Science fiction     March 19, 2020      74        6.5
## 273                               Comedy       May 31, 2019     100        6.5
## 274                      Horror thriller September 29, 2017     103        6.5
## 275                             Thriller   October 30, 2020      93        6.5
## 276             Family/Christmas musical  November 13, 2020     119        6.5
## 277                                Drama        May 7, 2021      98        6.5
## 278                            Adventure   December 7, 2018     104        6.5
## 279                                Drama      June 24, 2020      91        6.5
## 280                          Documentary      June 23, 2017      95        6.5
## 281             Science fiction thriller       May 12, 2021     101        6.5
## 282                      Romantic comedy      June 15, 2018     105        6.5
## 283                               Comedy      July 28, 2017      83        6.5
## 284                                Drama     April 10, 2020      91        6.5
## 285                              Romance     April 21, 2017      83        6.5
## 286           Hidden-camera prank comedy     March 26, 2021      86        6.6
## 287                               Horror      June 24, 2020      94        6.6
## 288                      Romantic comedy  February 26, 2021     102        6.6
## 289                              Romance       June 7, 2019     118        6.6
## 290                          Documentary    August 19, 2016      79        6.6
## 291                                Drama        May 7, 2021      98        6.6
## 292                          Documentary      June 29, 2018      89        6.6
## 293                          Documentary  November 23, 2020      83        6.6
## 294                          Documentary   December 7, 2018      98        6.6
## 295                         Spy thriller September 14, 2018     114        6.6
## 296                          Crime drama    August 20, 2020      99        6.6
## 297                        Anime/Fantasy      June 18, 2020     104        6.7
## 298              Animated musical comedy     April 16, 2021      92        6.7
## 299                          Documentary  November 20, 2019      86        6.7
## 300                Anime/Science fiction       May 20, 2017     106        6.7
## 301                                Drama       May 27, 2021      95        6.7
## 302                          Documentary      June 16, 2017      91        6.7
## 303                          Documentary   January 11, 2021      89        6.7
## 304                               Action     April 24, 2020     117        6.7
## 305                          Documentary  December 11, 2020      90        6.7
## 306                                Drama  November 24, 2020     117        6.7
## 307                          Documentary September 15, 2020      80        6.7
## 308                                Drama   February 3, 2017      87        6.7
## 309                               Comedy   December 3, 2020     101        6.7
## 310                       Romantic drama   February 5, 2021     106        6.7
## 311                                Drama      March 3, 2021     111        6.7
## 312                                Drama     March 12, 2021      97        6.7
## 313                          Documentary      July 10, 2019     106        6.7
## 314                         Comedy-drama      July 29, 2016     111        6.7
## 315                          Documentary      July 15. 2016     116        6.7
## 316                                Drama   October 18, 2019     112        6.7
## 317                                Drama   October 28, 2016      76        6.8
## 318                  Biographical/Comedy   January 26, 2018     101        6.8
## 319                          Documentary     March 20, 2020      92        6.8
## 320                      Romantic comedy       May 31, 2019     102        6.8
## 321                          Documentary        May 6, 2020      89        6.8
## 322                               Comedy     August 3, 2018     105        6.8
## 323                             Thriller      June 29, 2018     101        6.8
## 324                               Comedy  December 27, 2020      70        6.8
## 325                          Documentary September 17, 2020      96        6.8
## 326                          Documentary       May 11, 2020      85        6.8
## 327                          Documentary     April 20, 2018      79        6.8
## 328                          Documentary  November 21, 2017      73        6.8
## 329                                Drama    October 2, 2020     114        6.8
## 330                                Drama  November 13, 2020      95        6.8
## 331                                Drama      July 14, 2017     107        6.8
## 332                          Documentary    January 6, 2021      98        6.8
## 333                             Thriller  December 24, 2020     108        6.9
## 334                          Documentary September 30, 2016      92        6.9
## 335                          Documentary    October 8, 2020     100        6.9
## 336                          Documentary      March 1, 2021      97        6.9
## 337                                Drama  February 24, 2017      96        6.9
## 338                          Documentary       May 19, 2017     100        6.9
## 339                              Romance September 29, 2017     103        6.9
## 340                         Comedy-drama     March 26, 2021     114        6.9
## 341                          Documentary   February 9, 2018      95        6.9
## 342                          Documentary       June 3, 2020      83        6.9
## 343                              Romance        May 1, 2020     105        6.9
## 344                         Comedy-drama   October 13, 2017     112        6.9
## 345                          Documentary   October 12, 2018      86        7.0
## 346                          Documentary September 22, 2017     100        7.0
## 347                          Documentary   October 13, 2017     109        7.0
## 348                          Documentary September 15, 2019      64        7.0
## 349                                Drama  December 18, 2020      94        7.0
## 350                          Documentary     March 17, 2021      99        7.0
## 351                          Documentary  February 23, 2021     108        7.0
## 352                          Documentary       May 17, 2019      84        7.0
## 353                          Documentary     March 22, 2019      70        7.0
## 354                               Comedy   December 9, 2020     117        7.0
## 355   Christmas/Fantasy/Adventure/Comedy  November 22, 2018     104        7.0
## 356                               Biopic     March 22, 2019     108        7.0
## 357                                Drama      June 19, 2019     110        7.1
## 358                          Documentary     April 22, 2020      92        7.1
## 359                          Documentary  November 27, 2020      80        7.1
## 360                          Documentary  December 27, 2019      73        7.1
## 361                          Documentary September 10, 2019      96        7.1
## 362                          Crime drama       May 14, 2021     106        7.1
## 363                          Documentary     April 20, 2019      97        7.1
## 364                          Documentary   October 27, 2020      94        7.1
## 365                          Documentary       May 26, 2017      78        7.1
## 366                          Documentary September 18, 2015      81        7.1
## 367                          Documentary        May 1, 2019      87        7.1
## 368                         One-man show  November 13, 2018      91        7.1
## 369                          Documentary     March 18, 2016      91        7.1
## 370                          Documentary   October 20, 2017      95        7.1
## 371                                Drama   January 29, 2021     112        7.1
## 372                          Documentary      July 24, 2019     114        7.1
## 373                      Romantic comedy    August 17, 2018      99        7.1
## 374                          Documentary September 30, 2020      82        7.2
## 375                          Documentary September 23, 2016      98        7.2
## 376                          Documentary   January 18, 2019      97        7.2
## 377                          Documentary   October 28, 2016     107        7.2
## 378                          Documentary     April 10, 2020      92        7.2
## 379                         Drama-Comedy  February 22, 2019      89        7.2
## 380           Coming-of-age comedy-drama   October 18, 2019      99        7.2
## 381                                Drama        May 1, 2018     101        7.2
## 382                          Crime drama   January 18, 2019      97        7.2
## 383                                  War    October 7, 2016     108        7.2
## 384                               Biopic   October 25, 2019     118        7.3
## 385                          Documentary      July 17, 2020     100        7.3
## 386                          Documentary       May 12, 2017     101        7.3
## 387                                Drama       May 27, 2020     105        7.3
## 388                          Documentary       July 8, 2020      96        7.3
## 389                          Crime drama September 12, 2018     100        7.3
## 390                          Documentary   January 11, 2019      64        7.3
## 391                          Documentary   February 8, 2019      64        7.3
## 392                          Documentary   October 28, 2020     114        7.3
## 393                          Documentary   October 14, 2016      79        7.3
## 394                          Documentary     April 29, 2016      90        7.3
## 395                          Documentary    October 6, 2017     105        7.3
## 396                         Comedy-drama      June 24, 2016      97        7.3
## 397                          Documentary       May 22, 2015      83        7.3
## 398                          Documentary    August 21, 2019     110        7.4
## 399                          Documentary   January 31, 2020      85        7.4
## 400                         Concert Film  November 25, 2020      87        7.4
## 401                          Documentary   October 26, 2018      97        7.4
## 402                          Documentary       June 7, 2019     118        7.4
## 403                          Documentary   November 2, 2018      98        7.4
## 404                          Documentary      July 17, 2015      80        7.4
## 405                         Concert Film  November 22, 2017     108        7.5
## 406                          Documentary   October 14, 2020      79        7.5
## 407                          Documentary  September 7, 2018      74        7.5
## 408                          Documentary    October 2, 2020      90        7.5
## 409          Animation / Science Fiction    August 16, 2019      71        7.5
## 410                          Documentary   October 27. 2017      98        7.5
## 411                         Variety show  December 24, 2019      70        7.5
## 412                          Documentary September 13, 2018      99        7.5
## 413                          Documentary      June 24, 2020     104        7.6
## 414                          Documentary   October 18, 2019      85        7.6
## 415                          Documentary      July 27, 2018     100        7.6
## 416                          Documentary  September 9, 2020      94        7.6
## 417                          Documentary      June 26, 2015      84        7.6
## 418                                Drama  February 21, 2020     117        7.6
## 419                          Documentary     April 19, 2019      76        7.7
## 420                          Documentary     March 25, 2020     108        7.7
## 421                          Documentary  November 17, 2017      94        7.7
## 422                         Concert Film   October 12, 2016      90        7.7
## 423                            Making-of  February 11, 2020      72        7.7
## 424                          Documentary     April 29, 2020      82        7.9
## 425                          Documentary   November 4, 2016     112        7.9
## 426                          Documentary  December 21, 2018     105        8.0
## 427                          Documentary      July 14, 2017      89        8.1
## 428                          Documentary  September 7, 2020      85        8.1
## 429                          Documentary    August 26, 2020     106        8.1
## 430                          Documentary    October 7, 2016     100        8.2
## 431                          Documentary      June 19, 2020     107        8.2
## 432 Animation/Christmas/Comedy/Adventure  November 15, 2019      97        8.2
## 433                          Documentary     March 24, 2021      89        8.2
## 434                          Documentary   October 14, 2020     109        8.2
## 435                          Documentary  November 24, 2017     114        8.3
## 436                         Concert Film       May 20, 2020      85        8.4
## 437                          Documentary    October 9, 2015      91        8.4
## 438                          Documentary   December 8, 2020      89        8.6
## 439                          Documentary    October 4, 2020      83        9.0
##                       Language
## 1                      Spanish
## 2                      Italian
## 3                      English
## 4                        Hindi
## 5                      Turkish
## 6                      English
## 7                       Korean
## 8                   Indonesian
## 9                        Malay
## 10                     English
## 11                     English
## 12                      Korean
## 13                     English
## 14                     English
## 15                     English
## 16                     English
## 17                     English
## 18                     English
## 19                       Dutch
## 20                     English
## 21                      French
## 22                     Italian
## 23                     English
## 24                      French
## 25                     English
## 26                     Italian
## 27                      French
## 28                    Filipino
## 29                     English
## 30                      French
## 31                     Italian
## 32                     English
## 33                      German
## 34                     English
## 35                       Hindi
## 36                      Polish
## 37                     English
## 38                     English
## 39                     English
## 40                      French
## 41                     English
## 42                     English
## 43                     Spanish
## 44                  Portuguese
## 45                     English
## 46                  Indonesian
## 47                     English
## 48                      Polish
## 49                   Norwegian
## 50                     English
## 51                     English
## 52                     English
## 53                  Indonesian
## 54                     English
## 55                     English
## 56                     English
## 57                     English
## 58                     English
## 59                     Marathi
## 60                        Thai
## 61                     English
## 62                     English
## 63                     English
## 64                     English
## 65                     English
## 66                     English
## 67                     English
## 68                     English
## 69                     Italian
## 70                     English
## 71                     English
## 72                      French
## 73                     English
## 74                       Hindi
## 75                     Spanish
## 76                      French
## 77                      French
## 78                     Spanish
## 79                     English
## 80                     English
## 81                     English
## 82                     Spanish
## 83                      German
## 84                     English
## 85                       Hindi
## 86                     English
## 87                      French
## 88                     English
## 89                     English
## 90                     English
## 91                     Italian
## 92                     English
## 93                    Filipino
## 94                  Portuguese
## 95                       Hindi
## 96                     English
## 97                     English
## 98                     English
## 99                     Swedish
## 100                    English
## 101                    English
## 102                    English
## 103                    English
## 104                    English
## 105                    English
## 106                    English
## 107             Spanish/Basque
## 108                    English
## 109                 Portuguese
## 110                    English
## 111                    English
## 112                    Turkish
## 113                    English
## 114                    Italian
## 115                    English
## 116                    Spanish
## 117                    English
## 118                    English
## 119                    English
## 120                    English
## 121                    Italian
## 122                    English
## 123                    Spanish
## 124                    English
## 125                    English
## 126                    English
## 127                    English
## 128                    English
## 129                       Thai
## 130                    English
## 131                     Polish
## 132                    English
## 133                    English
## 134                    English
## 135                    English
## 136                    English
## 137                    English
## 138                    English
## 139                    English
## 140                    English
## 141                    English
## 142                    English
## 143                      Hindi
## 144                      Hindi
## 145                    English
## 146                    English
## 147                    English
## 148                    English
## 149                    English
## 150                    English
## 151                      Hindi
## 152                 Portuguese
## 153                     German
## 154                    English
## 155                    English
## 156                    English
## 157                    English
## 158                    English
## 159                    English
## 160                      Dutch
## 161                    English
## 162                     German
## 163                    Spanish
## 164                    English
## 165                    English
## 166                    English
## 167                    English
## 168                    English
## 169                      Hindi
## 170                     French
## 171                    English
## 172                    English
## 173                    Italian
## 174                    English
## 175                    Italian
## 176                    English
## 177                      Hindi
## 178                    English
## 179                    English
## 180                    English
## 181                    English
## 182                    English
## 183                    English
## 184                    English
## 185                    English
## 186                    English
## 187                    English
## 188                    English
## 189                    English
## 190                    English
## 191                    English
## 192                    English
## 193                    English
## 194                    English
## 195                    English
## 196                     French
## 197                    English
## 198                    Turkish
## 199                 Indonesian
## 200                 Portuguese
## 201                    English
## 202                    English
## 203                    English
## 204                      Hindi
## 205                    Spanish
## 206                    English
## 207                    Italian
## 208                    Spanish
## 209                 Indonesian
## 210                    Turkish
## 211                    English
## 212                    English
## 213                     French
## 214                    English
## 215                    English
## 216                    English
## 217                    English
## 218                    English
## 219                    English
## 220                    English
## 221                    English
## 222                    English
## 223                    English
## 224                    English
## 225                    English
## 226                    English
## 227                    English
## 228                    English
## 229                 Portuguese
## 230                     French
## 231                 Indonesian
## 232                      Hindi
## 233                    English
## 234                    Spanish
## 235                    English
## 236                    English
## 237                    English
## 238                    English
## 239                    English
## 240                    English
## 241                    English
## 242                    English
## 243                    English
## 244                    English
## 245                    English
## 246                     French
## 247                    English
## 248                    English
## 249                    Spanish
## 250                    English
## 251                    English
## 252                    English
## 253                     German
## 254                 Indonesian
## 255                    English
## 256                    English
## 257                    English
## 258                    English
## 259                     French
## 260                    English
## 261                    English
## 262                 Indonesian
## 263                    English
## 264                    Spanish
## 265                    English
## 266            Spanish/Catalan
## 267                    English
## 268                    English
## 269                    English
## 270                    English
## 271                    English
## 272                   Japanese
## 273                      Hindi
## 274                    English
## 275                    English
## 276                    English
## 277                    English
## 278                    English
## 279                    Spanish
## 280                    English
## 281                     French
## 282                    English
## 283                    English
## 284 English/Taiwanese/Mandarin
## 285                    English
## 286                    English
## 287                      Hindi
## 288                    Spanish
## 289                    Spanish
## 290                    English
## 291                      Hindi
## 292                    English
## 293                    English
## 294                    English
## 295                    English
## 296                    Spanish
## 297                   Japanese
## 298                    English
## 299                    English
## 300                   Japanese
## 301                    English
## 302                    English
## 303                    English
## 304                    English
## 305                    English
## 306                    English
## 307               Thia/English
## 308                    English
## 309                 Portuguese
## 310                    English
## 311                    English
## 312                    Turkish
## 313                    Spanish
## 314                    English
## 315                    English
## 316                      Hindi
## 317                    Spanish
## 318                    English
## 319                    Spanish
## 320                    English
## 321                    English
## 322                      Hindi
## 323                    English
## 324                    English
## 325                     French
## 326                    English
## 327                    English
## 328                    English
## 329                      Hindi
## 330                    Italian
## 331                    English
## 332                     French
## 333                      Hindi
## 334                    English
## 335                     French
## 336                    English
## 337                    English
## 338                 Portuguese
## 339                    English
## 340                      Hindi
## 341                    English
## 342                    English
## 343                    English
## 344                    English
## 345                    English
## 346                    English
## 347                    English
## 348                    Spanish
## 349                    English
## 350                    English
## 351                    English
## 352                    English
## 353                    English
## 354                    Italian
## 355                    English
## 356                    English
## 357                    English
## 358                    English
## 359                    English
## 360                    Spanish
## 361                    English
## 362                      Dutch
## 363                    English
## 364                    Spanish
## 365                    English
## 366                    English
## 367                    English
## 368                    English
## 369                    English
## 370                    English
## 371                    English
## 372                    English
## 373                    English
## 374                    English
## 375                    English
## 376                    English
## 377                    English
## 378                    English
## 379                    English
## 380                    Spanish
## 381                      Tamil
## 382                      Hindi
## 383                    English
## 384                    English
## 385                    English
## 386                    English
## 387                    Spanish
## 388            Spanish/English
## 389                    Italian
## 390            English/Spanish
## 391                    English
## 392             English/Arabic
## 393           English/Mandarin
## 394            English/Russian
## 395                    English
## 396                    English
## 397                    English
## 398                    English
## 399                    English
## 400                    English
## 401                    English
## 402                    English
## 403                    English
## 404                    English
## 405                    English
## 406                     Korean
## 407                    English
## 408                    English
## 409                    English
## 410                    English
## 411                    English
## 412                    English
## 413                    English
## 414                    English
## 415                    English
## 416                    English
## 417                    English
## 418                      Hindi
## 419                    English
## 420                    English
## 421                    English
## 422                    English
## 423                    Spanish
## 424                    English
## 425                    English
## 426                    English
## 427                    English
## 428                    English
## 429                    English
## 430                    English
## 431                    English
## 432                    English
## 433                    English
## 434                    Spanish
## 435                    English
## 436                    English
## 437   English/Ukranian/Russian
## 438                 Portuguese
## 439                    English
te=df %>% filter(df$Runtime >120 & df$Runtime <150)
te
##                                                          Title
## 1                                                        Drive
## 2                              The Last Days of American Crime
## 3                                           Sardar Ka Grandson
## 4                                                Ghost Stories
## 5                                                 Sandy Wexler
## 6                                          Things Heard & Seen
## 7                                                         Mute
## 8                                                  Ride or Die
## 9                                                Hold the Dark
## 10                                            Ginny Weds Sunny
## 11                                                   15 August
## 12                                         All Day and a Night
## 13                                         The Kissing Booth 2
## 14                                            Army of the Dead
## 15                                                    The Prom
## 16                                                     Rebecca
## 17                                                 War Machine
## 18                                               6 Underground
## 19                                              Finding 'Ohana
## 20                                       Offering to the Storm
## 21                                                     Apostle
## 22                                                Time to Hunt
## 23                                             Triple Frontier
## 24             Eurovision Song Contest: The Story of Fire Saga
## 25                                                    Bird Box
## 26                               I'm Thinking of Ending Things
## 27                                          It Takes a Lunatic
## 28                                              Space Sweepers
## 29                                   The Red Sea Diving Resort
## 30                                             Ajeeb Daastaans
## 31                                           Night in Paradise
## 32                                               The Old Guard
## 33                                                     22 July
## 34                                        The Boys in the Band
## 35                                  The Other Side of the Wind
## 36                                                        Mank
## 37                                                 Outlaw King
## 38                                              The Highwaymen
## 39                                      The Night Comes for Us
## 40                                           Pieces of a Woman
## 41                                      The Devil All the Time
## 42                                             The White Tiger
## 43                                 First They Killed My Father
## 44                                        Love per Square Foot
## 45                                                Private Life
## 46                                     The 40-Year-Old Version
## 47                                                The Disciple
## 48                                       The Edge of Democracy
## 49                                                    The King
## 50                             El Camino: A Breaking Bad Movie
## 51                                                        Okja
## 52                                              Raat Akeli Hai
## 53                                The Ballad of Buster Scruggs
## 54                              Homecoming: A Film by Beyonce 
## 55                                                        Ludo
## 56                                                      Quincy
## 57 Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 58                                               The Two Popes
## 59                                         Beasts of No Nation
## 60                                                        Roma
## 61                                  The Trial of the Chicago 7
## 62                                              Marriage Story
## 63                       Taylor Swift: Reputation Stadium Tour
##                           Genre           Premiere Runtime IMDB.Score
## 1                        Action   November 1, 2019     147        3.5
## 2           Heist film/Thriller       June 5, 2020     149        3.7
## 3                        Comedy       May 18, 2021     139        4.1
## 4              Horror anthology    January 1, 2020     144        4.3
## 5                        Comedy     April 14, 2017     131        5.2
## 6                        Horror     April 29, 2021     121        5.3
## 7       Science fiction/Mystery  February 23, 2018     126        5.5
## 8  Psychological thriller drama     April 15, 2021     142        5.5
## 9                      Thriller September 28, 2018     125        5.6
## 10              Romantic comedy    October 9, 2020     125        5.7
## 11                 Comedy-drama     March 29, 2019     124        5.8
## 12                        Drama        May 1, 2020     121        5.8
## 13              Romantic comedy      July 24, 2020     131        5.8
## 14                 Zombie/Heist       May 21, 2021     148        5.9
## 15                      Musical  December 11, 2020     132        5.9
## 16            Romantic thriller   October 21, 2020     123        6.0
## 17                   War-Comedy       May 26, 2017     122        6.0
## 18                       Action  December 13, 2019     128        6.1
## 19                       Family   January 29, 2021     123        6.1
## 20                     Thriller      July 24, 2020     139        6.2
## 21              Horror-thriller   October 12, 2018     129        6.3
## 22                     Thriller     April 23, 2020     134        6.3
## 23              Action-thriller     March 13, 2019     125        6.4
## 24               Musical comedy      June 26, 2020     123        6.5
## 25       Psychological thriller  December 21, 2018     124        6.6
## 26       Psychological thriller  September 4, 2020     134        6.6
## 27                  Documentary   October 25, 2019     126        6.6
## 28              Science fiction   February 5, 2021     136        6.6
## 29                 Spy thriller      July 31, 2019     130        6.6
## 30                        Drama     April 16, 2021     142        6.7
## 31                        Drama      April 9, 2021     132        6.7
## 32             Superhero/Action      July 10, 2020     124        6.7
## 33                        Drama   October 10, 2018     144        6.8
## 34                        Drama September 30, 2020     121        6.8
## 35                        Drama   November 2, 2018     122        6.8
## 36                       Biopic   December 4, 2020     132        6.9
## 37              Historical-epic   November 9, 2018     121        6.9
## 38                  Crime drama     March 29, 2019     131        6.9
## 39              Action-thriller   October 19, 2018     121        7.0
## 40                        Drama    January 7, 2021     126        7.1
## 41       Psychological thriller September 16, 2020     138        7.1
## 42                        Drama   January 22, 2021     125        7.1
## 43                        Drama September 15, 2017     136        7.2
## 44              Romantic comedy  February 14, 2018     133        7.2
## 45                        Drama    October 5, 2018     124        7.2
## 46                       Comedy    October 9, 2020     124        7.2
## 47                        Drama     April 30, 2021     129        7.2
## 48                  Documentary      June 19, 2019     121        7.2
## 49             Historical drama   November 1, 2019     140        7.2
## 50                  Crime drama   October 11, 2019     121        7.3
## 51             Action-adventure      June 28, 2017     121        7.3
## 52                     Thriller      July 31, 2020     149        7.3
## 53                      Western  November 16, 2018     132        7.3
## 54                  Documentary     April 17, 2019     137        7.5
## 55        Anthology/Dark comedy  November 12, 2020     149        7.6
## 56                  Documentary September 21, 2018     124        7.6
## 57                  Documentary      June 12, 2019     144        7.6
## 58                        Drama  December 20, 2019     125        7.6
## 59                    War drama   October 16, 2015     136        7.7
## 60                        Drama  December 14, 2018     135        7.7
## 61                        Drama   October 16, 2020     130        7.8
## 62                        Drama   December 6, 2019     136        7.9
## 63                 Concert Film  December 31, 2018     125        8.4
##                Language
## 1                 Hindi
## 2               English
## 3                 Hindi
## 4                 Hindi
## 5               English
## 6               English
## 7               English
## 8              Japanese
## 9               English
## 10                Hindi
## 11              Marathi
## 12              English
## 13              English
## 14              English
## 15              English
## 16              English
## 17              English
## 18              English
## 19              English
## 20              Spanish
## 21              English
## 22               Korean
## 23              English
## 24              English
## 25              English
## 26              English
## 27              English
## 28               Korean
## 29              English
## 30                Hindi
## 31               Korean
## 32              English
## 33              English
## 34              English
## 35              English
## 36              English
## 37              English
## 38              English
## 39           Indonesian
## 40              English
## 41              English
## 42              English
## 43 Khmer/English/French
## 44                Hindi
## 45              English
## 46              English
## 47              Marathi
## 48           Portuguese
## 49              English
## 50              English
## 51       English/Korean
## 52                Hindi
## 53              English
## 54              English
## 55                Hindi
## 56              English
## 57              English
## 58              English
## 59         English/Akan
## 60              Spanish
## 61              English
## 62              English
## 63              English
ti=df %>% filter(df$Runtime <30)
ti
##                                                                          Title
## 1                                                               After the Raid
## 2                                                                  Sol Levante
## 3                            American Factory: A Conversation with the Obamas 
## 4                                                         Ghosts of Sugar Land
## 5                           Notes from Dunblane: Lesson from a School Shooting
## 6                                            John Was Trying to Contact Aliens
## 7                                                               A 3 Minute Hug
## 8                                                                      Canvas 
## 9                                      Chadwick Boseman: Portrait of an Artist
## 10                                                           What Did Jack Do?
## 11                                                            Little Miss Sumo
## 12                                                     A Love Song for Latasha
## 13                                    The Boys in the Band: Something Personal
## 14                                                                  The Trader
## 15                                                            Cops and Robbers
## 16                                                      The Claudia Kishi Club
## 17 I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 18                                                  Lorena, Light-Footed Woman
## 19                                                                   Resurface
## 20                                 The Road to El Camino: A Breaking Bad Movie
## 21                                                                       Zion 
## 22                                                                    Extremis
## 23                                                     Sitara: Let Girls Dream
## 24                                                    Period. End of Sentence.
## 25                                               The Irishman: In Conversation
## 26                                                                       Anima
## 27                                              If Anything Happens I Love You
##                    Genre           Premiere Runtime IMDB.Score        Language
## 1            Documentary  December 19, 2019      25        4.3         Spanish
## 2          Anime / Short      April 2, 2020       4        4.7         English
## 3  Aftershow / Interview    August 21, 2019      10        5.2         English
## 4            Documentary   October 16. 2019      21        5.5         English
## 5            Documentary September 28, 2018      23        5.9         English
## 6            Documentary    August 20, 2020      16        6.4         English
## 7            Documentary   October 28, 2019      28        6.5 English/Spanish
## 8      Animation / Short  December 11, 2020       9        6.5         English
## 9            Documentary     April 17, 2021      21        6.5         English
## 10         Drama / Short   January 20, 2020      17        6.5         English
## 11           Documentary   October 28, 2019      19        6.7        Japanese
## 12           Documentary September 21, 2020      19        6.8         English
## 13 Aftershow / Interview September 30, 2020      28        6.8         English
## 14           Documentary   February 9, 2018      23        6.8        Georgian
## 15     Animation / Short  December 28, 2020       7        6.9         English
## 16           Documentary      July 10, 2020      17        6.9         English
## 17 Aftershow / Interview   November 3, 2020      14        7.0         English
## 18           Documentary  November 20, 2019      28        7.0         Spanish
## 19           Documentary  September 1, 2017      27        7.0         English
## 20             Making-of   October 29, 2019      13        7.2         English
## 21           Documentary    August 10, 2018      11        7.2         English
## 22           Documentary September 13, 2016      24        7.3         English
## 23     Animation / Short      March 8, 2020      15        7.3         English
## 24           Documentary  February 12, 2019      26        7.4   English/Hindi
## 25 Aftershow / Interview  November 27, 2019      23        7.4         English
## 26       Musical / Short      June 27, 2019      15        7.7         English
## 27     Animation / Short  November 20, 2020      12        7.8         English
tim=df %>% filter(df$Runtime >150)
tim
##                     Title        Genre          Premiere Runtime IMDB.Score
## 1                Citation        Drama  November 6, 2020     151        6.2
## 2      The Forest of Love        Drama  October 11, 2019     151        6.3
## 3             Da 5 Bloods    War drama     June 12, 2020     155        6.5
## 4            The Irishman  Crime drama November 27, 2019     209        7.8
## 5 Springsteen on Broadway One-man show December 16, 2018     153        8.5
##   Language
## 1  English
## 2 Japanese
## 3  English
## 4  English
## 5  English
x=df %>% filter(df$IMDB.Score <4)
x
##                             Title                   Genre          Premiere
## 1                 Enter the Anime             Documentary    August 5, 2019
## 2                     Dark Forces                Thriller   August 21, 2020
## 3                         The App   Science fiction/Drama December 26, 2019
## 4                  The Open House         Horror thriller  January 19, 2018
## 5                     Kaali Khuhi                 Mystery  October 30, 2020
## 6                           Drive                  Action  November 1, 2019
## 7               Leyla Everlasting                  Comedy  December 4, 2020
## 8 The Last Days of American Crime     Heist film/Thriller      June 5, 2020
## 9                         Paradox Musical/Western/Fantasy    March 23, 2018
##   Runtime IMDB.Score         Language
## 1      58        2.5 English/Japanese
## 2      81        2.6          Spanish
## 3      79        2.6          Italian
## 4      94        3.2          English
## 5      90        3.4            Hindi
## 6     147        3.5            Hindi
## 7     112        3.7          Turkish
## 8     149        3.7          English
## 9      73        3.9          English
a=df %>% filter(df$IMDB.Score >4 & df$IMDB.Score <5)
a
##                                               Title                 Genre
## 1                                Sardar Ka Grandson                Comedy
## 2                              Searching for Sheela           Documentary
## 3                                          The Call                 Drama
## 4                                           Whipped       Romantic comedy
## 5                                All Because of You         Action comedy
## 6                                             Mercy              Thriller
## 7                                    After the Raid           Documentary
## 8                                     Ghost Stories      Horror anthology
## 9                          The Last Thing He Wanted    Political thriller
## 10                        What Happened to Mr. Cha?                Comedy
## 11                                       Death Note       Horror thriller
## 12                Hello Privilege. It's Me, Chelsea           Documentary
## 13                                 Secret Obsession              Thriller
## 14                                       Sextuplets                Comedy
## 15                            The Girl on the Train              Thriller
## 16                                    Thunder Force      Superhero-Comedy
## 17                                     Fatal Affair              Thriller
## 18                                     Just Say Yes       Romantic comedy
## 19                                 Seriously Single                Comedy
## 20            The Misadventures of Hedi and Cokeman                Comedy
## 21                                 5 Star Christmas                Comedy
## 22                                      After Maria           Documentary
## 23    I Am the Pretty Thing That Lives in the House                Horror
## 24                                      Paris Is Us         Romance drama
## 25 Porta dos Fundos: The First Temptation of Christ                Comedy
## 26                                      Rattlesnake                Horror
## 27                                      The Players                Comedy
## 28                                       We Are One           Documentary
## 29                                    Finding Agnes                 Drama
## 30                                               IO Science fiction/Drama
## 31                                       Sentinelle                Action
## 32                                      Sol Levante         Anime / Short
## 33                                      The Binding                 Drama
## 34                                 We Can Be Heroes             Superhero
## 35                              Christmas Crossfire              Thriller
## 36                                       Coin Heist                 Heist
## 37                               Mrs. Serial Killer              Thriller
## 38               Nobody Sleeps in the Woods Tonight                Horror
## 39                                      Take the 10                Comedy
## 40                                   The Main Event                Comedy
## 41                                 The Ridiculous 6               Western
## 42                                  Earth and Blood                Action
## 43                                         Fearless   Animation/Superhero
## 44                                     Holiday Rush           Family film
## 45                              The Day of the Lord                 Drama
##              Premiere Runtime IMDB.Score        Language
## 1        May 18, 2021     139        4.1           Hindi
## 2      April 22, 2021      58        4.1         English
## 3   November 27, 2020     112        4.1          Korean
## 4  September 18, 2020      97        4.1      Indonesian
## 5     October 1, 2020     101        4.2           Malay
## 6   November 22, 2016      90        4.2         English
## 7   December 19, 2019      25        4.3         Spanish
## 8     January 1, 2020     144        4.3           Hindi
## 9   February 21, 2020     115        4.3         English
## 10    January 1, 2021     102        4.3          Korean
## 11    August 25, 2017     100        4.4         English
## 12 September 13, 2019      64        4.4         English
## 13      July 18, 2019      97        4.4         English
## 14    August 16, 2019      99        4.4         English
## 15  February 26, 2021     120        4.4           Hindi
## 16      April 9, 2021     105        4.4         English
## 17      July 16, 2020      89        4.5         English
## 18      April 2, 2021      97        4.5           Dutch
## 19      July 31, 2020     107        4.5         English
## 20  February 10, 2021      99        4.5          French
## 21   December 7, 2018      95        4.6         Italian
## 22       May 24, 2019      37        4.6 English/Spanish
## 23   October 28, 2016      89        4.6         English
## 24  February 22, 2019      83        4.6          French
## 25   December 3, 2019      46        4.6      Portuguese
## 26   October 25, 2019      85        4.6         English
## 27      July 15, 2020      88        4.6         Italian
## 28      July 14, 2020      86        4.6          French
## 29  November 30, 2020     105        4.7        Filipino
## 30   January 18, 2019      95        4.7         English
## 31      March 5, 2021      80        4.7          French
## 32      April 2, 2020       4        4.7         English
## 33    October 2, 2020      93        4.7         Italian
## 34  December 25, 2020     100        4.7         English
## 35   December 4, 2020     106        4.8          German
## 36    January 6, 2017      97        4.8         English
## 37        May 1, 2020     106        4.8           Hindi
## 38   October 28, 2020     103        4.8          Polish
## 39   January 20, 2017      80        4.8         English
## 40     April 10, 2020     101        4.8         English
## 41  December 11, 2015     119        4.8         English
## 42     April 17, 2020      80        4.9          French
## 43    August 14, 2020      89        4.9         English
## 44  November 28, 2019      94        4.9         English
## 45   October 30, 2020      93        4.9         Spanish
b=df %>% filter(df$IMDB.Score >5 & df$IMDB.Score <6)
b
##                                                  Title
## 1                                              Cadaver
## 2                                             Clinical
## 3                                      Coffee & Kareem
## 4                                                 Dude
## 5                                           Geez & Ann
## 6                               The Larva Island Movie
## 7                                         #REALITYHIGH
## 8    American Factory: A Conversation with the Obamas 
## 9                                           Desperados
## 10              Dolly Parton's Christmas on the Square
## 11                                  Father of the Year
## 12                                           Firebrand
## 13                                           Ghost Lab
## 14                                    Girlfriend's Day
## 15                   Handsome: A Netflix Mystery Movie
## 16                                     Hubie Halloween
## 17                                               Ibiza
## 18                                    Rim of the World
## 19                                        Sandy Wexler
## 20                                   See You Yesterday
## 21                 Still Laugh-In: The Stars Celebrate
## 22                                 Strip Down, Rise Up
## 23                                           Tall Girl
## 24                                           The Beast
## 25                                         The Week Of
## 26               A Christmas Prince: The Royal Wedding
## 27                                      Back to School
## 28                                      Dangerous Lies
## 29                      Gunjan Saxena: The Kargil Girl
## 30                                           Intuition
## 31            The Most Assassinated Woman in the World
## 32                                 Things Heard & Seen
## 33                                    To Each, Her Own
## 34            Who Would You Take to a Deserted Island?
## 35                                                XOXO
## 36             A Babysitter's Guide to Monster Hunting
## 37                  A Christmas Prince: The Royal Baby
## 38                                  Despite Everything
## 39               Dolly Kitty and Those Twinkling Stars
## 40                            Freaks: You're One of Us
## 41                                     Game Over, Man!
## 42                                              Guilty
## 43                                   In the Tall Grass
## 44                                       Madame Claude
## 45                                               Naked
## 46                                    Outside the Wire
## 47                 The Princess Switch: Switched Again
## 48                              Under the Riccione Sun
## 49                             A Very Murray Christmas
## 50                                        Been So Long
## 51                                           Dead Kids
## 52                                       Get the Grift
## 53                                Ghosts of Sugar Land
## 54                                        House Arrest
## 55                 Kevin Hart's Guide to Black History
## 56                                 Love Wedding Repeat
## 57                                                Mute
## 58                                             Òlòt?ré
## 59                                             Red Dot
## 60                                         Ride or Die
## 61                                        Step Sisters
## 62                             The Cloverfield Paradox
## 63                         The Knight Before Christmas
## 64               The Legacy of a Whitetail Deer Hunter
## 65                                         The Package
## 66                                       Unicorn Store
## 67                                        Wine Country
## 68                                         Bomb Scared
## 69                                       Brahman Naman
## 70                                          Double Dad
## 71                                    Falling Inn Love
## 72                                       Hold the Dark
## 73                                    Love, Guaranteed
## 74                                 One-Way to Tomorrow
## 75                     Sarah Cooper: Everything's Fine
## 76                                      The Last Laugh
## 77                                   The Last Paradiso
## 78                                    The Midnight Sky
## 79                                       The Paramedic
## 80                                       The Sleepover
## 81                              Vampires vs. the Bronx
## 82                                Why Did You Kill Me?
## 83                                         A Week Away
## 84                                    Caught by a Wave
## 85                               Christmas Inheritance
## 86                                          Dad Wanted
## 87                                 El Camino Christmas
## 88                                                 Eli
## 89                                    Ginny Weds Sunny
## 90                                            Good Sam
## 91                                           Lionheart
## 92                                         Little Evil
## 93                                            One Take
## 94                                    Out of Many, One
## 95                                         Point Blank
## 96                                          Prime Time
## 97                                         The Do-Over
## 98                                The Holiday Calendar
## 99                             The Woman in the Window
## 100                                    The Wrong Missy
## 101                                     Velvet Buzzsaw
## 102                                            Yes Day
## 103                                          15 August
## 104                             A California Christmas
## 105                                 A Christmas Prince
## 106                                All Day and a Night
## 107                                       American Son
## 108                                              Barry
## 109                                          Candy Jar
## 110                            Choked: Paisa Bolta Hai
## 111                                       Class of '83
## 112                                         Extinction
## 113                                  Happy Anniversary
## 114                                     I Am All Girls
## 115                                        Let It Snow
## 116                                            Mascots
## 117                           Operation Christmas Drop
## 118                                       Rajma Chawal
## 119                                       Rich in Love
## 120                                        Rising High
## 121                                        Rodney King
## 122                          Sierra Burgess Is a Loser
## 123                                       Small Crimes
## 124                             Special Correspondents
## 125                                                TAU
## 126                                    The After Party
## 127                       The Babysitter: Killer Queen
## 128                                   The Claus Family
## 129                                The Kissing Booth 2
## 130                                   The Perfect Date
## 131                                     What We Wanted
## 132                                    You've Got This
## 133                                         6 Balloons
## 134                                  A Fall from Grace
## 135                                            Amateur
## 136                                   Army of the Dead
## 137                                                Cam
## 138                                    Earthquake Bird
## 139     Frankenstein's Monster's Monster, Frankenstein
## 140                                         Horse Girl
## 141 Notes from Dunblane: Lesson from a School Shooting
## 142                                              Maska
## 143                                        The Decline
## 144                       The Minimalists: Less Is Now
## 145                                     The Polka King
## 146                                           The Prom
## 147          True Memoirs of an International Assassin
## 148                                             Ultras
##                            Genre           Premiere Runtime IMDB.Score
## 1                         Horror   October 22, 2020      86        5.1
## 2                       Thriller   January 13, 2017     104        5.1
## 3                  Action comedy      April 3, 2020      88        5.1
## 4              Teen comedy-drama     April 20, 2018      97        5.1
## 5                 Romantic drama  February 25, 2021     105        5.1
## 6                      Animation      July 23, 2020      90        5.1
## 7                         Comedy  September 8, 2017      99        5.2
## 8          Aftershow / Interview    August 21, 2019      10        5.2
## 9                Romantic comedy       July 3, 2020     106        5.2
## 10             Christmas musical  November 22, 2020      98        5.2
## 11                        Comedy      July 20, 2018      94        5.2
## 12                         Drama  February 22, 2019     112        5.2
## 13                        Horror       May 26, 2021     117        5.2
## 14                        Comedy  February 14, 2017      70        5.2
## 15                        Comedy        May 5, 2017      81        5.2
## 16                        Comedy    October 7, 2020     103        5.2
## 17                        Comedy       May 25, 2018      94        5.2
## 18     Science fiction adventure       May 24, 2019      98        5.2
## 19                        Comedy     April 14, 2017     131        5.2
## 20               Science fiction       May 17, 2019      87        5.2
## 21                  Variety show       May 14, 2019      60        5.2
## 22                   Documentary   February 5, 2021     112        5.2
## 23                  Comedy-drama September 13, 2019     102        5.2
## 24                         Drama  November 27, 2020      99        5.2
## 25                        Comedy     April 27, 2018     116        5.2
## 26               Romantic comedy  November 30, 2018      92        5.3
## 27                        Comedy    August 30, 2019      83        5.3
## 28                      Thriller     April 30, 2020      97        5.3
## 29                         Drama    August 12, 2020     112        5.3
## 30                      Thriller       May 28, 2020     116        5.3
## 31                      Thriller  September 7, 2018     102        5.3
## 32                        Horror     April 29, 2021     121        5.3
## 33               Romantic comedy      June 24, 2018      95        5.3
## 34                         Drama     April 12, 2019      93        5.3
## 35                         Drama    August 26, 2016      92        5.3
## 36         Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 37               Romantic comedy   December 5, 2019      85        5.4
## 38                        Comedy        May 3, 2019      78        5.4
## 39                         Drama September 18, 2020     120        5.4
## 40            Supernatural drama  September 2, 2020      92        5.4
## 41                 Action/Comedy     March 23, 2018     101        5.4
## 42                      Thriller      March 6, 2020     119        5.4
## 43                        Horror    October 4, 2019     101        5.4
## 44                         Drama      April 2, 2021     112        5.4
## 45                        Comedy    August 11, 2017      96        5.4
## 46        Action/Science fiction   January 15, 2021     114        5.4
## 47               Romantic comedy  November 19, 2020      97        5.4
## 48        Romantic teenage drama       July 1, 2020     101        5.4
## 49              Comedy / Musical   December 4, 2015      56        5.5
## 50                       Musical   October 26, 2018     100        5.5
## 51                      Thriller   December 1, 2019      94        5.5
## 52                        Comedy     April 28, 2021      94        5.5
## 53                   Documentary   October 16. 2019      21        5.5
## 54                        Comedy  November 15, 2019     104        5.5
## 55                  Variety show   February 8, 2019      63        5.5
## 56               Romantic comedy     April 10, 2020     100        5.5
## 57       Science fiction/Mystery  February 23, 2018     126        5.5
## 58                   Crime drama    October 2, 2020     106        5.5
## 59                      Thriller  February 11, 2021      86        5.5
## 60  Psychological thriller drama     April 15, 2021     142        5.5
## 61                        Comedy   January 19, 2018     108        5.5
## 62               Science fiction   February 4, 2018     102        5.5
## 63               Romantic comedy  November 21, 2019      92        5.5
## 64              Adventure/Comedy       July 6, 2018      83        5.5
## 65                  Black comedy    August 10, 2018      94        5.5
## 66                        Comedy      April 5, 2019      92        5.5
## 67                        Comedy       May 10, 2019     103        5.5
## 68                  Black comedy   October 12, 2017      89        5.6
## 69                        Comedy       July 7, 2016      95        5.6
## 70                  Comedy-drama   January 15, 2021     103        5.6
## 71               Romantic comedy    August 29, 2019      97        5.6
## 72                      Thriller September 28, 2018     125        5.6
## 73               Romantic comedy  September 3, 2020      91        5.6
## 74                       Romance      June 19, 2020      90        5.6
## 75                  Variety show   October 27, 2020      49        5.6
## 76                  Comedy-drama   January 11, 2019      98        5.6
## 77                Romantic drama   February 5, 2021     107        5.6
## 78               Science fiction  December 23, 2020     118        5.6
## 79                      Thriller September 16, 2020      94        5.6
## 80                        Comedy    August 21, 2020     103        5.6
## 81                 Horror comedy    October 2, 2020      86        5.6
## 82                   Documentary     April 14, 2021      83        5.6
## 83             Christian musical     March 26, 2021      97        5.7
## 84           Romantic teen drama     March 25, 2021      99        5.7
## 85                Romantic drama  December 15, 2017     104        5.7
## 86                        Family September 11, 2020     102        5.7
## 87                   Dark comedy   December 8, 2017      89        5.7
## 88                        Horror   October 18, 2019      98        5.7
## 89               Romantic comedy    October 9, 2020     125        5.7
## 90                         Drama       May 16, 2019      89        5.7
## 91                        Comedy    January 4, 2019      94        5.7
## 92                 Comedy horror  September 1, 2017      94        5.7
## 93                   Documentary      June 18, 2020      85        5.7
## 94                   Documentary  December 12, 2018      34        5.7
## 95                        Action      July 12, 2019      86        5.7
## 96                      Thriller     April 14, 2021      91        5.7
## 97                 Action comedy       May 27, 2016     108        5.7
## 98               Romantic comedy   November 2, 2018      95        5.7
## 99        Psychological thriller       May 14, 2021     100        5.7
## 100                       Comedy       May 13, 2020      90        5.7
## 101                     Thriller   February 1, 2019     112        5.7
## 102                       Comedy     March 12, 2021      86        5.7
## 103                 Comedy-drama     March 29, 2019     124        5.8
## 104              Romantic comedy  December 14, 2020     107        5.8
## 105              Romantic comedy  November 17, 2017      92        5.8
## 106                        Drama        May 1, 2020     121        5.8
## 107                        Drama   November 1, 2019      90        5.8
## 108                       Biopic  December 16, 2016     104        5.8
## 109                       Comedy     April 27, 2018      92        5.8
## 110                        Drama       June 5, 2020     114        5.8
## 111                        Drama    August 21, 2020      98        5.8
## 112     Science fiction/Thriller      July 27, 2018      95        5.8
## 113              Romantic comedy     March 30, 2018      78        5.8
## 114                     Thriller       May 14, 2021     107        5.8
## 115              Romantic comedy   November 8, 2019      92        5.8
## 116                 Mockumentary   October 13, 2016      95        5.8
## 117              Romantic comedy   November 5, 2020      96        5.8
## 118                 Comedy-drama  November 30, 2018     118        5.8
## 119              Romantic comedy     April 30, 2020     105        5.8
## 120                       Satire     April 17, 2020      94        5.8
## 121                 One-man show     April 28, 2017      52        5.8
## 122        Romantic comedy-drama  September 7, 2018     105        5.8
## 123                  Dark comedy     April 28, 2017      95        5.8
## 124                       Satire     April 29, 2016     100        5.8
## 125     Science fiction/Thriller      June 29, 2018      97        5.8
## 126                       Comedy    August 24, 2018      89        5.8
## 127                Comedy/Horror September 10, 2020     102        5.8
## 128                      Fantasy   December 7, 2020      96        5.8
## 129              Romantic comedy      July 24, 2020     131        5.8
## 130              Romantic comedy     April 12, 2019      89        5.8
## 131                        Drama  November 11, 2020      93        5.8
## 132              Romantic comedy    October 2, 2020     111        5.8
## 133                        Drama      April 6, 2018      75        5.9
## 134                     Thriller   January 17, 2020     120        5.9
## 135                 Sports-drama      April 6, 2018      96        5.9
## 136                 Zombie/Heist       May 21, 2021     148        5.9
## 137         Psychological horror  November 16, 2018      94        5.9
## 138                      Mystery  November 15, 2019     107        5.9
## 139                 Mockumentary      July 16, 2019      32        5.9
## 140                        Drama   February 7, 2020     104        5.9
## 141                  Documentary September 28, 2018      23        5.9
## 142              Romantic comedy     March 27, 2020     111        5.9
## 143                     Thriller     March 27, 2020      83        5.9
## 144                  Documentary    January 1, 2021      53        5.9
## 145                 Comedy-drama   January 12, 2018      95        5.9
## 146                      Musical  December 11, 2020     132        5.9
## 147                Action comedy  November 11, 2016      98        5.9
## 148                  Sports film     March 20, 2020     108        5.9
##           Language
## 1        Norwegian
## 2          English
## 3          English
## 4          English
## 5       Indonesian
## 6          English
## 7          English
## 8          English
## 9          English
## 10         English
## 11         English
## 12         Marathi
## 13            Thai
## 14         English
## 15         English
## 16         English
## 17         English
## 18         English
## 19         English
## 20         English
## 21         English
## 22         English
## 23         English
## 24         Italian
## 25         English
## 26         English
## 27          French
## 28         English
## 29           Hindi
## 30         Spanish
## 31          French
## 32         English
## 33          French
## 34         Spanish
## 35         English
## 36         English
## 37         English
## 38         Spanish
## 39           Hindi
## 40          German
## 41         English
## 42           Hindi
## 43         English
## 44          French
## 45         English
## 46         English
## 47         English
## 48         Italian
## 49         English
## 50         English
## 51        Filipino
## 52      Portuguese
## 53         English
## 54           Hindi
## 55         English
## 56         English
## 57         English
## 58         English
## 59         Swedish
## 60        Japanese
## 61         English
## 62         English
## 63         English
## 64         English
## 65         English
## 66         English
## 67         English
## 68  Spanish/Basque
## 69         English
## 70      Portuguese
## 71         English
## 72         English
## 73         English
## 74         Turkish
## 75         English
## 76         English
## 77         Italian
## 78         English
## 79         Spanish
## 80         English
## 81         English
## 82         English
## 83         English
## 84         Italian
## 85         English
## 86         Spanish
## 87         English
## 88         English
## 89           Hindi
## 90         English
## 91         English
## 92         English
## 93            Thai
## 94         English
## 95         English
## 96          Polish
## 97         English
## 98         English
## 99         English
## 100        English
## 101        English
## 102        English
## 103        Marathi
## 104        English
## 105        English
## 106        English
## 107        English
## 108        English
## 109        English
## 110          Hindi
## 111          Hindi
## 112        English
## 113        English
## 114        English
## 115        English
## 116        English
## 117        English
## 118          Hindi
## 119     Portuguese
## 120         German
## 121        English
## 122        English
## 123        English
## 124        English
## 125        English
## 126        English
## 127        English
## 128          Dutch
## 129        English
## 130        English
## 131         German
## 132        Spanish
## 133        English
## 134        English
## 135        English
## 136        English
## 137        English
## 138        English
## 139        English
## 140        English
## 141        English
## 142          Hindi
## 143         French
## 144        English
## 145        English
## 146        English
## 147        English
## 148        Italian
c=df %>% filter(df$IMDB.Score >6 & df$IMDB.Score <7)
c
##                                                                     Title
## 1                                                           6 Underground
## 2                                            Between Two Ferns: The Movie
## 3                                                           Burning Sands
## 4                                                        Casting JonBenet
## 5                                              Deidra & Laney Rob a Train
## 6                                                          Finding 'Ohana
## 7                                                                Holidate
## 8                                                     Holiday in the Wild
## 9                                                        Hot Girls Wanted
## 10                                                            Like Father
## 11                                                             Lost Girls
## 12                                                              Otherhood
## 13                                                  Pee-wee's Big Holiday
## 14                                                             Rogue City
## 15                                                                 Sergio
## 16                                                            Stuck Apart
## 17                                                   Tersanjung the Movie
## 18                                                             The Killer
## 19                                                          The Lovebirds
## 20                                        The Most Hated Woman in America
## 21                                                         The Perfection
## 22                                          Tribhanga – Tedhi Medhi Crazy
## 23                                                        Unknown Origins
## 24                                                                Work It
## 25                                                             Alien Xmas
## 26                                            Baggio: The Divine Ponytail
## 27                                                             Below Zero
## 28                                                               Citation
## 29                                                 Crazy Awesome Teachers
## 30                                          Have You Ever Seen Fireflies?
## 31                                                       High Flying Bird
## 32                                              In the Shadow of the Moon
## 33                                                            Lost Bullet
## 34                                     Octonauts & the Caves of Sac Actun
## 35                                                  Offering to the Storm
## 36                                                        Roxanne Roxanne
## 37                                                          Someone Great
## 38                                                   Spenser Confidential
## 39                                              The Land of Steady Habits
## 40                                                      The Rachel Divide
## 41                                                                Voyuer 
## 42                                                             Win It All
## 43                                                                   1922
## 44                                                 A Tale of Two Kitchens
## 45                                                       Alex Strangelove
## 46                                                                Apostle
## 47                                                                  Benji
## 48                                                                 Bright
## 49                                                                  Cargo
## 50                                                        Concrete Cowboy
## 51                                                          Feel the Beat
## 52                                                           Get the Goat
## 53                                                   I Am Not an Easy Man
## 54                                                            June & Kopi
## 55                                                          Music Teacher
## 56                                                   Nail Bomber: Manhunt
## 57                                                       Notes for My Son
## 58                                                                  Polar
## 59                                    Porta dos Fundos: The Last Hangover
## 60                                                            Sand Castle
## 61                                                           Shimmer Lake
## 62                                                               Spectral
## 63                                                         The Babysitter
## 64                                                          The Discovery
## 65                                                     The Forest of Love
## 66                                                         The Laundromat
## 67                                           The Legend of Cocaine Island
## 68                                                           The Outsider
## 69                                                           Time to Hunt
## 70                                    To All the Boys: Always and Forever
## 71                                       Travis Scott: Look Mom I Can Fly
## 72                                                               Uncorked
## 73                                                  Anelka: Misunderstood
## 74                                   Ariana Grande: Excuse Me, I Love You
## 75                                                                    ARQ
## 76                                                                Birders
## 77                                                   Como Caído del Cielo
## 78                                                            First Match
## 79                                                              Fractured
## 80                                                      Irreplaceable You
## 81                                                             Isi & Ossi
## 82                                      John Was Trying to Contact Aliens
## 83                                                           Layla Majnun
## 84                               Murder to Mercy: The Cyntoia Brown Story
## 85                                                             My Own Man
## 86                                                     Nappily Ever After
## 87                                                          Over the Moon
## 88                                                            Street Flow
## 89                                                          Strong Island
## 90                                Sturgill Simpson Presents: Sound & Fury
## 91                                                        Take Your Pills
## 92                                                    The Heartbreak Club
## 93                                                    The Mars Generation
## 94                                                           The Occupant
## 95                                                        The Willoughbys
## 96                                                        Triple Frontier
## 97                                                         Two Catalonias
## 98                                                     Walk. Ride. Rodeo.
## 99                                                               Wheelman
## 100                                                     When We First Met
## 101                                                        A 3 Minute Hug
## 102                                                 All the Bright Places
## 103                                                      All Together Now
## 104                                             Altered Carbon: Resleeved
## 105                             Antoine Griezmann: The Making of a Legend
## 106                                                               Canvas 
## 107                               Chadwick Boseman: Portrait of an Artist
## 108                                                            Chopsticks
## 109                                                           Da 5 Bloods
## 110                                     Dolly Parton: A MusiCares Tribute
## 111                       Eurovision Song Contest: The Story of Fire Saga
## 112                                                         Gerald's Game
## 113                                                             His House
## 114                                    Jingle Jangle: A Christmas Journey
## 115                                                     Life Overtakes Me
## 116                                                          Lust Stories
## 117                                                               Monster
## 118                                          Mowgli: Legend of the Jungle
## 119                                                 Nobody Knows I'm Here
## 120                                Nobody Speak: Trials of the Free Press
## 121                                                                Oxygen
## 122                                                             Set It Up
## 123                                          The Incredible Jessica James
## 124                                                             Tigertail
## 125                                                                Tramps
## 126                                                     What Did Jack Do?
## 127                                                              Bad Trip
## 128                                                              Bird Box
## 129                                                               Bulbbul
## 130                                                       Crazy About Her
## 131                                                       Elisa & Marcela
## 132                                              I'll Sleep When I'm Dead
## 133                                         I'm Thinking of Ending Things
## 134                                                    It Takes a Lunatic
## 135                                                             Milestone
## 136                                                         Recovery Boys
## 137                                ReMastered: Who Killed Jam Master Jay?
## 138                                               Shawn Mendes: In Wonder
## 139                                                        Space Sweepers
## 140                                                     The American Meme
## 141                                                             The Angel
## 142                                                  The Crimes That Bind
## 143                                             The Red Sea Diving Resort
## 144                                           What Would Sophia Loren Do?
## 145                                                        A Whisker Away
## 146                                                       Ajeeb Daastaans
## 147                                                Arlo the Alligator Boy
## 148                                          Bikram: Yogi, Guru, Predator
## 149                                                                Blame!
## 150                                                          Blue Miracle
## 151                                                         CounterPunch 
## 152                               Crack: Cocaine, Corruption & Conspiracy
## 153                                                            Extraction
## 154                                                          Giving Voice
## 155                                                       Hillbilly Elegy
## 156                                    Hope Frozen: A Quest to Live Twice
## 157                                                       Imperial Dreams
## 158                                                Just Another Christmas
## 159                                                      Little Miss Sumo
## 160                                                       Malcolm & Marie
## 161                   Michael Bolton's Big, Sexy, Valentine's Day Special
## 162                                                                 Moxie
## 163                                                     Night in Paradise
## 164                                                           Paper Lives
## 165                                              Parchis: The Documentary
## 166                                                              Tallulah
## 167                                                         The Old Guard
## 168                                      Tony Robbins: I Am Not Your Guru
## 169                                                              Upstarts
## 170                                                               22 July
## 171                                                                7 años
## 172                                           A Futile and Stupid Gesture
## 173                         A Life of Speed: The Juan Manuel Fangio Story
## 174                                               A Love Song for Latasha
## 175                                                      All in My Family
## 176                                                    Always Be My Maybe
## 177                                                              Becoming
## 178                                                  Long Live Brij Mohan
## 179                                                               Calibre
## 180                                                         Death to 2020
## 181                                                   GIMS: On the Record
## 182                          Have a Good Trip: Adventures in Psychedelics
## 183                                                            Heroin(e) 
## 184                                                            Mercury 13
## 185                                                     Saving Capitalism
## 186                                                           Serious Men
## 187                                                  The Boys in the Band
## 188                              The Boys in the Band: Something Personal
## 189                                                        The Life Ahead
## 190                                            The Other Side of the Wind
## 191                                                            The Trader
## 192                                                           To the Bone
## 193                                           Tony Parker: The Final Shot
## 194                                                              AK vs AK
## 195                                                           Amanda Knox
## 196                                          Bigflo & Oil: Hip Hop Frenzy
## 197                                         Biggie: I Got a Story to Tell
## 198                                                      Cops and Robbers
## 199                            I Don't Feel at Home in This World Anymore
## 200                                                             Laerte-se
## 201                                                                  Mank
## 202                                                    Our Souls at Night
## 203                                                           Outlaw King
## 204                                                              Pagglait
## 205                                     ReMastered: Who Shot the Sheriff?
## 206                                                         Seeing Allred
## 207                                                    Spelling the Dream
## 208                                                The Claudia Kishi Club
## 209                                                        The Half of It
## 210                                                        The Highwaymen
## 211 The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 212                             The Meyerowitz Stories (New and Selected)
##                           Genre           Premiere Runtime IMDB.Score
## 1                        Action  December 13, 2019     128        6.1
## 2                        Comedy September 20, 2019      82        6.1
## 3                         Drama     March 10, 2017     102        6.1
## 4                   Documentary     April 28, 2017      80        6.1
## 5                         Drama     March 17, 2017      94        6.1
## 6                        Family   January 29, 2021     123        6.1
## 7       Romantic comedy/Holiday   October 28, 2020     104        6.1
## 8             Adventure-romance   November 1, 2019      85        6.1
## 9                   Documentary       May 29, 2015      84        6.1
## 10                       Comedy     August 3, 2018     103        6.1
## 11                  Crime drama     March 13, 2020      95        6.1
## 12                       Comedy     August 2, 2019     100        6.1
## 13                    Adventure     March 18, 2016      89        6.1
## 14                  Crime drama   October 30, 2020     116        6.1
## 15                       Biopic     April 17, 2020     118        6.1
## 16                        Drama    January 8, 2021      96        6.1
## 17                        Drama      April 1, 2021     114        6.1
## 18                      Western  November 10, 2017      99        6.1
## 19              Romantic comedy       May 22, 2020      87        6.1
## 20                       Biopic     March 24, 2017      92        6.1
## 21              Horror-thriller       May 24, 2019      90        6.1
## 22                        Drama   January 15, 2021      95        6.1
## 23                     Thriller    August 28, 2020      96        6.1
## 24                 Dance comedy     August 7, 2020      93        6.1
## 25                  Stop Motion  November 20, 2020      42        6.2
## 26                       Biopic       May 26, 2021      92        6.2
## 27                        Drama   January 29, 2021     106        6.2
## 28                        Drama   November 6, 2020     151        6.2
## 29                 Comedy-drama    August 17, 2020     101        6.2
## 30                       Comedy      April 9, 2021     114        6.2
## 31                 Sports-drama   February 8, 2019      90        6.2
## 32                     Thriller September 27, 2019     115        6.2
## 33                     Thriller      June 19, 2020      92        6.2
## 34                    Animation    August 14, 2020      72        6.2
## 35                     Thriller      July 24, 2020     139        6.2
## 36                       Biopic     March 23, 2018      98        6.2
## 37              Romantic comedy     April 19, 2019      92        6.2
## 38                Action comedy      March 6, 2020     111        6.2
## 39                        Drama September 14, 2018      98        6.2
## 40                  Documentary     April 27, 2018     104        6.2
## 41                  Documentary   December 1, 2017      95        6.2
## 42                       Comedy      April 7, 2017      88        6.2
## 43           Horror/Crime drama   October 20, 2017     102        6.3
## 44                  Documentary       May 22, 2019      30        6.3
## 45              Romantic comedy       June 8, 2018      99        6.3
## 46              Horror-thriller   October 12, 2018     129        6.3
## 47                  Family film     March 16, 2018      87        6.3
## 48                Urban fantasy  December 22, 2017     117        6.3
## 49                 Drama/Horror       May 18, 2018     104        6.3
## 50                        Drama      April 2, 2021     111        6.3
## 51          Family/Comedy-drama      June 19, 2020     107        6.3
## 52                       Comedy     March 18, 2021      97        6.3
## 53              Romantic comedy     April 13, 2018      98        6.3
## 54                        Drama   January 28, 2021      90        6.3
## 55                        Drama     April 19, 2019     101        6.3
## 56                  Documentary       May 26, 2021      72        6.3
## 57                        Drama  November 24, 2020      83        6.3
## 58                       Action   January 25, 2019     118        6.3
## 59                       Comedy  December 21, 2018      44        6.3
## 60                          War     April 21, 2017     113        6.3
## 61               Crime thriller       June 9, 2017      86        6.3
## 62       Science fiction/Action   December 9, 2016     108        6.3
## 63           Teen comedy horror   October 13, 2017      85        6.3
## 64        Science fiction/Drama     March 31, 2017     102        6.3
## 65                        Drama   October 11, 2019     151        6.3
## 66                 Comedy-drama   October 18, 2019      98        6.3
## 67                  Documentary     March 29, 2019      87        6.3
## 68                  Crime drama      March 9, 2018     120        6.3
## 69                     Thriller     April 23, 2020     134        6.3
## 70              Romantic comedy  February 12, 2021     109        6.3
## 71                  Documentary    August 28, 2019      85        6.3
## 72                        Drama     March 27, 2020     103        6.3
## 73                  Documentary     August 5, 2020      94        6.4
## 74                 Concert Film  December 21, 2020      97        6.4
## 75     Science fiction/Thriller September 16, 2016      88        6.4
## 76                  Documentary September 25, 2019      37        6.4
## 77               Musical comedy  December 24, 2019     112        6.4
## 78                 Sports-drama     March 30, 2018     102        6.4
## 79                     Thriller   October 11, 2019     100        6.4
## 80                        Drama  February 16, 2018      96        6.4
## 81              Romantic comedy  February 14, 2020     113        6.4
## 82                  Documentary    August 20, 2020      16        6.4
## 83               Romantic drama  February 11, 2021     119        6.4
## 84                  Documentary     April 29, 2020      97        6.4
## 85                  Documentary  December 13, 2014      81        6.4
## 86                 Comedy-drama September 21, 2018      98        6.4
## 87  Animation/Musical/Adventure   October 23, 2020      95        6.4
## 88                        Drama   October 12, 2019      96        6.4
## 89                  Documentary September 15. 2017     107        6.4
## 90         Animation / Musicial September 27, 2019      41        6.4
## 91                  Documentary     March 16, 2018      87        6.4
## 92                 Comedy-drama   January 14, 2021     101        6.4
## 93                  Documentary        May 5, 2017      97        6.4
## 94                     Thriller     March 25, 2020     103        6.4
## 95   Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 96              Action-thriller     March 13, 2019     125        6.4
## 97                  Documentary September 28, 2018     116        6.4
## 98                        Drama      March 8, 2019      99        6.4
## 99              Action thriller   October 20, 2017      82        6.4
## 100             Romantic comedy   February 9, 2018      97        6.4
## 101                 Documentary   October 28, 2019      28        6.5
## 102                     Romance  February 28, 2020     108        6.5
## 103                       Drama    August 28, 2020      93        6.5
## 104       Anime/Science fiction     March 19, 2020      74        6.5
## 105                 Documentary     March 21, 2019      60        6.5
## 106           Animation / Short  December 11, 2020       9        6.5
## 107                 Documentary     April 17, 2021      21        6.5
## 108                      Comedy       May 31, 2019     100        6.5
## 109                   War drama      June 12, 2020     155        6.5
## 110                 Documentary      April 7, 2021      55        6.5
## 111              Musical comedy      June 26, 2020     123        6.5
## 112             Horror thriller September 29, 2017     103        6.5
## 113                    Thriller   October 30, 2020      93        6.5
## 114    Family/Christmas musical  November 13, 2020     119        6.5
## 115                 Documentary      June 14, 2019      40        6.5
## 116                       Drama      June 15, 2018     120        6.5
## 117                       Drama        May 7, 2021      98        6.5
## 118                   Adventure   December 7, 2018     104        6.5
## 119                       Drama      June 24, 2020      91        6.5
## 120                 Documentary      June 23, 2017      95        6.5
## 121    Science fiction thriller       May 12, 2021     101        6.5
## 122             Romantic comedy      June 15, 2018     105        6.5
## 123                      Comedy      July 28, 2017      83        6.5
## 124                       Drama     April 10, 2020      91        6.5
## 125                     Romance     April 21, 2017      83        6.5
## 126               Drama / Short   January 20, 2020      17        6.5
## 127  Hidden-camera prank comedy     March 26, 2021      86        6.6
## 128      Psychological thriller  December 21, 2018     124        6.6
## 129                      Horror      June 24, 2020      94        6.6
## 130             Romantic comedy  February 26, 2021     102        6.6
## 131                     Romance       June 7, 2019     118        6.6
## 132                 Documentary    August 19, 2016      79        6.6
## 133      Psychological thriller  September 4, 2020     134        6.6
## 134                 Documentary   October 25, 2019     126        6.6
## 135                       Drama        May 7, 2021      98        6.6
## 136                 Documentary      June 29, 2018      89        6.6
## 137                 Documentary   December 7, 2018      58        6.6
## 138                 Documentary  November 23, 2020      83        6.6
## 139             Science fiction   February 5, 2021     136        6.6
## 140                 Documentary   December 7, 2018      98        6.6
## 141                Spy thriller September 14, 2018     114        6.6
## 142                 Crime drama    August 20, 2020      99        6.6
## 143                Spy thriller      July 31, 2019     130        6.6
## 144                 Documentary   January 15, 2021      32        6.6
## 145               Anime/Fantasy      June 18, 2020     104        6.7
## 146                       Drama     April 16, 2021     142        6.7
## 147     Animated musical comedy     April 16, 2021      92        6.7
## 148                 Documentary  November 20, 2019      86        6.7
## 149       Anime/Science fiction       May 20, 2017     106        6.7
## 150                       Drama       May 27, 2021      95        6.7
## 151                 Documentary      June 16, 2017      91        6.7
## 152                 Documentary   January 11, 2021      89        6.7
## 153                      Action     April 24, 2020     117        6.7
## 154                 Documentary  December 11, 2020      90        6.7
## 155                       Drama  November 24, 2020     117        6.7
## 156                 Documentary September 15, 2020      80        6.7
## 157                       Drama   February 3, 2017      87        6.7
## 158                      Comedy   December 3, 2020     101        6.7
## 159                 Documentary   October 28, 2019      19        6.7
## 160              Romantic drama   February 5, 2021     106        6.7
## 161                Variety Show   February 7, 2017      54        6.7
## 162                       Drama      March 3, 2021     111        6.7
## 163                       Drama      April 9, 2021     132        6.7
## 164                       Drama     March 12, 2021      97        6.7
## 165                 Documentary      July 10, 2019     106        6.7
## 166                Comedy-drama      July 29, 2016     111        6.7
## 167            Superhero/Action      July 10, 2020     124        6.7
## 168                 Documentary      July 15. 2016     116        6.7
## 169                       Drama   October 18, 2019     112        6.7
## 170                       Drama   October 10, 2018     144        6.8
## 171                       Drama   October 28, 2016      76        6.8
## 172         Biographical/Comedy   January 26, 2018     101        6.8
## 173                 Documentary     March 20, 2020      92        6.8
## 174                 Documentary September 21, 2020      19        6.8
## 175                 Documentary        May 3, 2019      39        6.8
## 176             Romantic comedy       May 31, 2019     102        6.8
## 177                 Documentary        May 6, 2020      89        6.8
## 178                      Comedy     August 3, 2018     105        6.8
## 179                    Thriller      June 29, 2018     101        6.8
## 180                      Comedy  December 27, 2020      70        6.8
## 181                 Documentary September 17, 2020      96        6.8
## 182                 Documentary       May 11, 2020      85        6.8
## 183                 Documentary September 12, 2017      39        6.8
## 184                 Documentary     April 20, 2018      79        6.8
## 185                 Documentary  November 21, 2017      73        6.8
## 186                       Drama    October 2, 2020     114        6.8
## 187                       Drama September 30, 2020     121        6.8
## 188       Aftershow / Interview September 30, 2020      28        6.8
## 189                       Drama  November 13, 2020      95        6.8
## 190                       Drama   November 2, 2018     122        6.8
## 191                 Documentary   February 9, 2018      23        6.8
## 192                       Drama      July 14, 2017     107        6.8
## 193                 Documentary    January 6, 2021      98        6.8
## 194                    Thriller  December 24, 2020     108        6.9
## 195                 Documentary September 30, 2016      92        6.9
## 196                 Documentary    October 8, 2020     100        6.9
## 197                 Documentary      March 1, 2021      97        6.9
## 198           Animation / Short  December 28, 2020       7        6.9
## 199                       Drama  February 24, 2017      96        6.9
## 200                 Documentary       May 19, 2017     100        6.9
## 201                      Biopic   December 4, 2020     132        6.9
## 202                     Romance September 29, 2017     103        6.9
## 203             Historical-epic   November 9, 2018     121        6.9
## 204                Comedy-drama     March 26, 2021     114        6.9
## 205                 Documentary   October 12, 2018      57        6.9
## 206                 Documentary   February 9, 2018      95        6.9
## 207                 Documentary       June 3, 2020      83        6.9
## 208                 Documentary      July 10, 2020      17        6.9
## 209                     Romance        May 1, 2020     105        6.9
## 210                 Crime drama     March 29, 2019     131        6.9
## 211            Comedy / Musical       May 23, 2019      30        6.9
## 212                Comedy-drama   October 13, 2017     112        6.9
##                       Language
## 1                      English
## 2                      English
## 3                      English
## 4                      English
## 5                      English
## 6                      English
## 7                      English
## 8                      English
## 9                      English
## 10                     English
## 11                     English
## 12                     English
## 13                     English
## 14                      French
## 15                     English
## 16                     Turkish
## 17                  Indonesian
## 18                  Portuguese
## 19                     English
## 20                     English
## 21                     English
## 22                       Hindi
## 23                     Spanish
## 24                     English
## 25                     English
## 26                     Italian
## 27                     Spanish
## 28                     English
## 29                  Indonesian
## 30                     Turkish
## 31                     English
## 32                     English
## 33                      French
## 34                     English
## 35                     Spanish
## 36                     English
## 37                     English
## 38                     English
## 39                     English
## 40                     English
## 41                     English
## 42                     English
## 43                     English
## 44             English/Spanish
## 45                     English
## 46                     English
## 47                     English
## 48                     English
## 49                     English
## 50                     English
## 51                     English
## 52                  Portuguese
## 53                      French
## 54                  Indonesian
## 55                       Hindi
## 56                     English
## 57                     Spanish
## 58                     English
## 59                  Portuguese
## 60                     English
## 61                     English
## 62                     English
## 63                     English
## 64                     English
## 65                    Japanese
## 66                     English
## 67                     English
## 68            English/Japanese
## 69                      Korean
## 70                     English
## 71                     English
## 72                     English
## 73                      French
## 74                     English
## 75                     English
## 76             English/Spanish
## 77                     Spanish
## 78                     English
## 79                     English
## 80                     English
## 81                      German
## 82                     English
## 83                  Indonesian
## 84                     English
## 85                     English
## 86                     English
## 87                     English
## 88                      French
## 89                     English
## 90                     English
## 91                     English
## 92                  Indonesian
## 93                     English
## 94                     Spanish
## 95                     English
## 96                     English
## 97             Spanish/Catalan
## 98                     English
## 99                     English
## 100                    English
## 101            English/Spanish
## 102                    English
## 103                    English
## 104                   Japanese
## 105                     French
## 106                    English
## 107                    English
## 108                      Hindi
## 109                    English
## 110                    English
## 111                    English
## 112                    English
## 113                    English
## 114                    English
## 115            English/Swedish
## 116                      Hindi
## 117                    English
## 118                    English
## 119                    Spanish
## 120                    English
## 121                     French
## 122                    English
## 123                    English
## 124 English/Taiwanese/Mandarin
## 125                    English
## 126                    English
## 127                    English
## 128                    English
## 129                      Hindi
## 130                    Spanish
## 131                    Spanish
## 132                    English
## 133                    English
## 134                    English
## 135                      Hindi
## 136                    English
## 137                    English
## 138                    English
## 139                     Korean
## 140                    English
## 141                    English
## 142                    Spanish
## 143                    English
## 144                    English
## 145                   Japanese
## 146                      Hindi
## 147                    English
## 148                    English
## 149                   Japanese
## 150                    English
## 151                    English
## 152                    English
## 153                    English
## 154                    English
## 155                    English
## 156               Thia/English
## 157                    English
## 158                 Portuguese
## 159                   Japanese
## 160                    English
## 161                    English
## 162                    English
## 163                     Korean
## 164                    Turkish
## 165                    Spanish
## 166                    English
## 167                    English
## 168                    English
## 169                      Hindi
## 170                    English
## 171                    Spanish
## 172                    English
## 173                    Spanish
## 174                    English
## 175           English/Mandarin
## 176                    English
## 177                    English
## 178                      Hindi
## 179                    English
## 180                    English
## 181                     French
## 182                    English
## 183                    English
## 184                    English
## 185                    English
## 186                      Hindi
## 187                    English
## 188                    English
## 189                    Italian
## 190                    English
## 191                   Georgian
## 192                    English
## 193                     French
## 194                      Hindi
## 195                    English
## 196                     French
## 197                    English
## 198                    English
## 199                    English
## 200                 Portuguese
## 201                    English
## 202                    English
## 203                    English
## 204                      Hindi
## 205                    English
## 206                    English
## 207                    English
## 208                    English
## 209                    English
## 210                    English
## 211                    English
## 212                    English
d=df %>% filter(df$IMDB.Score >7 & df$IMDB.Score <8)
d
##                                                                                                          Title
## 1                                                       13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 2                                                                                           Angela's Christmas
## 3                                                                                      Angela's Christmas Wish
## 4                                                                                                        Beats
## 5                                                                                              Circus of Books
## 6                                                                       Dance Dreams: Hot Chocolate Nutcracker
## 7                                                                                      Derren Brown: Sacrifice
## 8                                                                                      El Pepe: A Supreme Life
## 9                                                                                                     End Game
## 10                                                                                                      Evelyn
## 11                                                                                                       Ferry
## 12                                                                                            Grass Is Greener
## 13                                                                         Guillermo Vilas: Settling the Score
## 14                                                                             Joshua: Teenager vs. Superpower
## 15                                                                         Keith Richards: Under the Influence
## 16                                                                                        Knock Down the House
## 17                                                                       Loudon Wainwright III: Surviving Twin
## 18                                                                                   My Beautiful Broken Brain
## 19                                                                                                   One of Us
## 20                                                                                           Pieces of a Woman
## 21                                                                                        Ram Dass, Going Home
## 22                                                                  ReMastered: Tricky Dick & the Man in Black
## 23                                                                                           Rooting for Roona
## 24                                                                                      The Devil All the Time
## 25                                                                                                     The Dig
## 26                                                                                              The Great Hack
## 27                                                                                             The White Tiger
## 28                                                                           To All the Boys I've Loved Before
## 29                                                                       American Murder: The Family Next Door
## 30                                                                                              Audrie & Daisy
## 31                                                                                 First They Killed My Father
## 32                                                                Fyre: The Greatest Party That Never Happened
## 33                                                                                            Into the Inferno
## 34                                                                                                LA Originals
## 35                                                                                                Ladies First
## 36                                                                                        Love per Square Foot
## 37                                                                                                   Paddleton
## 38                                                                                                Private Life
## 39                                                                                                   Seventeen
## 40                                                                                                   Sometimes
## 41                                                                                                        Soni
## 42                                                                                     The 40-Year-Old Version
## 43                                                                                                The Disciple
## 44                                                                                       The Edge of Democracy
## 45                                                                                                    The King
## 46                                                                 The Road to El Camino: A Breaking Bad Movie
## 47                                                                                     The Siege of Jadotville
## 48                                                                                                       Zion 
## 49                                                                                         Dolemite Is My Name
## 50                                                                             El Camino: A Breaking Bad Movie
## 51                                                                                                    Extremis
## 52                                                                                          Father Soldier Son
## 53                                                                                          Get Me Roger Stone
## 54                                                                                          I'm No Longer Here
## 55                                                             Mucho Mucho Amor: The Legend of Walter Mercado 
## 56                                                                          Octonauts & the Great Barrier Reef
## 57                                                                                                        Okja
## 58                                                                                                  On My Skin
## 59                                                                                              Raat Akeli Hai
## 60                                                                         ReMastered: Massacre at the Stadium
## 61                                                                   ReMastered: The Two Killings of Sam Cooke
## 62                                                                                 Secrets of the Saqqara Tomb
## 63                                                                                     Sitara: Let Girls Dream
## 64                                                                        Sky Ladder: The Art of Cai Guo-Qiang
## 65                                                                                             Team Foxcatcher
## 66                                                                                The Ballad of Buster Scruggs
## 67                                                                     The Death and Life of Marsha P. Johnson
## 68                                                                                  The Fundamentals of Caring
## 69                                                            The Other One: The Long Strange Trip of Bob Weir
## 70                                                                                            American Factory
## 71                                                                                            Fire in Paradise
## 72                                                                                                   Long Shot
## 73                                                                                              Miss Americana
## 74                                                                                    Period. End of Sentence.
## 75                                                                               Shawn Mendes: Live in Concert
## 76                                                                                                    Shirkers
## 77                                                                                         The Black Godfather
## 78                                                                               The Irishman: In Conversation
## 79                                                                                            The Speed Cubers
## 80                                                                               They'll Love Me When I'm Dead
## 81                                                                                                         Tig
## 82                                                                 Barbra: The Music, The Mem'ries, The Magic!
## 83                                                                                 Blackpink: Light Up the Sky
## 84                                                                                                 City of Joy
## 85                                                                                        Dick Johnson Is Dead
## 86                                                                              Homecoming: A Film by Beyonce 
## 87                                                                              Invader Zim: Enter the Florpus
## 88                                                                       Joan Didion: The Center Will Not Hold
## 89                                                                         John Mulaney & the Sack Lunch Bunch
## 90                                                                                               Reversing Roe
## 91                                                                                           The White Helmets
## 92                                                                                                   Athlete A
## 93                                                                                                        Ludo
## 94                                                                                                      Quincy
## 95                                                 Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 96                                                                                            Tell Me Who I Am
## 97                                                                                           The Bleeding Edge
## 98                                                                                          The Social Dilemma
## 99                                                                                               The Two Popes
## 100                                                                                What Happened, Miss Simone?
## 101                                                                                                 Yeh Ballet
## 102                                                                                                      Anima
## 103                                                                                        Beasts of No Nation
## 104                                                                           Brene Brown: The Call to Courage
## 105                                                                         Crip Camp: A Disability Revolution
## 106 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 107                                                                     Justin Timberlake + The Tennessee Kids
## 108                                                                                               Road to Roma
## 109                                                                                                       Roma
## 110                                                                             If Anything Happens I Love You
## 111                                                                                               The Irishman
## 112                                                                                 The Trial of the Chicago 7
## 113                                                                                              A Secret Love
## 114                                                                                                     Icarus
## 115                                                                                             Marriage Story
## 116                                                                                             The Ivory Game
##                           Genre           Premiere Runtime IMDB.Score
## 1         Aftershow / Interview   January 26, 2017      36        7.1
## 2                     Animation  November 30, 2018      30        7.1
## 3                     Animation   December 1, 2020      47        7.1
## 4                         Drama      June 19, 2019     110        7.1
## 5                   Documentary     April 22, 2020      92        7.1
## 6                   Documentary  November 27, 2020      80        7.1
## 7             Mentalism special   October 19, 2018      49        7.1
## 8                   Documentary  December 27, 2019      73        7.1
## 9                   Documentary        May 4, 2018      40        7.1
## 10                  Documentary September 10, 2019      96        7.1
## 11                  Crime drama       May 14, 2021     106        7.1
## 12                  Documentary     April 20, 2019      97        7.1
## 13                  Documentary   October 27, 2020      94        7.1
## 14                  Documentary       May 26, 2017      78        7.1
## 15                  Documentary September 18, 2015      81        7.1
## 16                  Documentary        May 1, 2019      87        7.1
## 17                 One-man show  November 13, 2018      91        7.1
## 18                  Documentary     March 18, 2016      91        7.1
## 19                  Documentary   October 20, 2017      95        7.1
## 20                        Drama    January 7, 2021     126        7.1
## 21                  Documentary      April 6, 2018      31        7.1
## 22                  Documentary   November 2, 2018      58        7.1
## 23                  Documentary   October 15, 2020      41        7.1
## 24       Psychological thriller September 16, 2020     138        7.1
## 25                        Drama   January 29, 2021     112        7.1
## 26                  Documentary      July 24, 2019     114        7.1
## 27                        Drama   January 22, 2021     125        7.1
## 28              Romantic comedy    August 17, 2018      99        7.1
## 29                  Documentary September 30, 2020      82        7.2
## 30                  Documentary September 23, 2016      98        7.2
## 31                        Drama September 15, 2017     136        7.2
## 32                  Documentary   January 18, 2019      97        7.2
## 33                  Documentary   October 28, 2016     107        7.2
## 34                  Documentary     April 10, 2020      92        7.2
## 35                  Documentary      March 8, 2018      39        7.2
## 36              Romantic comedy  February 14, 2018     133        7.2
## 37                 Drama-Comedy  February 22, 2019      89        7.2
## 38                        Drama    October 5, 2018     124        7.2
## 39   Coming-of-age comedy-drama   October 18, 2019      99        7.2
## 40                        Drama        May 1, 2018     101        7.2
## 41                  Crime drama   January 18, 2019      97        7.2
## 42                       Comedy    October 9, 2020     124        7.2
## 43                        Drama     April 30, 2021     129        7.2
## 44                  Documentary      June 19, 2019     121        7.2
## 45             Historical drama   November 1, 2019     140        7.2
## 46                    Making-of   October 29, 2019      13        7.2
## 47                          War    October 7, 2016     108        7.2
## 48                  Documentary    August 10, 2018      11        7.2
## 49                       Biopic   October 25, 2019     118        7.3
## 50                  Crime drama   October 11, 2019     121        7.3
## 51                  Documentary September 13, 2016      24        7.3
## 52                  Documentary      July 17, 2020     100        7.3
## 53                  Documentary       May 12, 2017     101        7.3
## 54                        Drama       May 27, 2020     105        7.3
## 55                  Documentary       July 8, 2020      96        7.3
## 56                    Animation   October 13, 2020      47        7.3
## 57             Action-adventure      June 28, 2017     121        7.3
## 58                  Crime drama September 12, 2018     100        7.3
## 59                     Thriller      July 31, 2020     149        7.3
## 60                  Documentary   January 11, 2019      64        7.3
## 61                  Documentary   February 8, 2019      64        7.3
## 62                  Documentary   October 28, 2020     114        7.3
## 63            Animation / Short      March 8, 2020      15        7.3
## 64                  Documentary   October 14, 2016      79        7.3
## 65                  Documentary     April 29, 2016      90        7.3
## 66                      Western  November 16, 2018     132        7.3
## 67                  Documentary    October 6, 2017     105        7.3
## 68                 Comedy-drama      June 24, 2016      97        7.3
## 69                  Documentary       May 22, 2015      83        7.3
## 70                  Documentary    August 21, 2019     110        7.4
## 71                  Documentary   November 1, 2019      39        7.4
## 72                  Documentary September 29, 2017      40        7.4
## 73                  Documentary   January 31, 2020      85        7.4
## 74                  Documentary  February 12, 2019      26        7.4
## 75                 Concert Film  November 25, 2020      87        7.4
## 76                  Documentary   October 26, 2018      97        7.4
## 77                  Documentary       June 7, 2019     118        7.4
## 78        Aftershow / Interview  November 27, 2019      23        7.4
## 79                  Documentary      July 29, 2020      40        7.4
## 80                  Documentary   November 2, 2018      98        7.4
## 81                  Documentary      July 17, 2015      80        7.4
## 82                 Concert Film  November 22, 2017     108        7.5
## 83                  Documentary   October 14, 2020      79        7.5
## 84                  Documentary  September 7, 2018      74        7.5
## 85                  Documentary    October 2, 2020      90        7.5
## 86                  Documentary     April 17, 2019     137        7.5
## 87  Animation / Science Fiction    August 16, 2019      71        7.5
## 88                  Documentary   October 27. 2017      98        7.5
## 89                 Variety show  December 24, 2019      70        7.5
## 90                  Documentary September 13, 2018      99        7.5
## 91                  Documentary September 16. 2016      40        7.5
## 92                  Documentary      June 24, 2020     104        7.6
## 93        Anthology/Dark comedy  November 12, 2020     149        7.6
## 94                  Documentary September 21, 2018     124        7.6
## 95                  Documentary      June 12, 2019     144        7.6
## 96                  Documentary   October 18, 2019      85        7.6
## 97                  Documentary      July 27, 2018     100        7.6
## 98                  Documentary  September 9, 2020      94        7.6
## 99                        Drama  December 20, 2019     125        7.6
## 100                 Documentary      June 26, 2015      84        7.6
## 101                       Drama  February 21, 2020     117        7.6
## 102             Musical / Short      June 27, 2019      15        7.7
## 103                   War drama   October 16, 2015     136        7.7
## 104                 Documentary     April 19, 2019      76        7.7
## 105                 Documentary     March 25, 2020     108        7.7
## 106                 Documentary  November 17, 2017      94        7.7
## 107                Concert Film   October 12, 2016      90        7.7
## 108                   Making-of  February 11, 2020      72        7.7
## 109                       Drama  December 14, 2018     135        7.7
## 110           Animation / Short  November 20, 2020      12        7.8
## 111                 Crime drama  November 27, 2019     209        7.8
## 112                       Drama   October 16, 2020     130        7.8
## 113                 Documentary     April 29, 2020      82        7.9
## 114                 Documentary     August 4, 2017     120        7.9
## 115                       Drama   December 6, 2019     136        7.9
## 116                 Documentary   November 4, 2016     112        7.9
##                 Language
## 1                English
## 2                English
## 3                English
## 4                English
## 5                English
## 6                English
## 7                English
## 8                Spanish
## 9                English
## 10               English
## 11                 Dutch
## 12               English
## 13               Spanish
## 14               English
## 15               English
## 16               English
## 17               English
## 18               English
## 19               English
## 20               English
## 21               English
## 22               English
## 23               Bengali
## 24               English
## 25               English
## 26               English
## 27               English
## 28               English
## 29               English
## 30               English
## 31  Khmer/English/French
## 32               English
## 33               English
## 34               English
## 35         English/Hindi
## 36                 Hindi
## 37               English
## 38               English
## 39               Spanish
## 40                 Tamil
## 41                 Hindi
## 42               English
## 43               Marathi
## 44            Portuguese
## 45               English
## 46               English
## 47               English
## 48               English
## 49               English
## 50               English
## 51               English
## 52               English
## 53               English
## 54               Spanish
## 55       Spanish/English
## 56               English
## 57        English/Korean
## 58               Italian
## 59                 Hindi
## 60       English/Spanish
## 61               English
## 62        English/Arabic
## 63               English
## 64      English/Mandarin
## 65       English/Russian
## 66               English
## 67               English
## 68               English
## 69               English
## 70               English
## 71               English
## 72               English
## 73               English
## 74         English/Hindi
## 75               English
## 76               English
## 77               English
## 78               English
## 79               English
## 80               English
## 81               English
## 82               English
## 83                Korean
## 84               English
## 85               English
## 86               English
## 87               English
## 88               English
## 89               English
## 90               English
## 91               English
## 92               English
## 93                 Hindi
## 94               English
## 95               English
## 96               English
## 97               English
## 98               English
## 99               English
## 100              English
## 101                Hindi
## 102              English
## 103         English/Akan
## 104              English
## 105              English
## 106              English
## 107              English
## 108              Spanish
## 109              Spanish
## 110              English
## 111              English
## 112              English
## 113              English
## 114              English
## 115              English
## 116              English
e=df %>% filter(df$IMDB.Score >8 & df$IMDB.Score <9)
e
##                                          Title
## 1                               Chasing Coral 
## 2                           My Octopus Teacher
## 3                               Rising Phoenix
## 4                                         13th
## 5            Disclosure: Trans Lives on Screen
## 6                                        Klaus
## 7                                   Seaspiracy
## 8        The Three Deaths of Marisela Escobedo
## 9                      Cuba and the Cameraman 
## 10                      Dancing with the Birds
## 11  Ben Platt: Live from Radio City Music Hall
## 12       Taylor Swift: Reputation Stadium Tour
## 13 Winter on Fire: Ukraine's Fight for Freedom
## 14                     Springsteen on Broadway
## 15   Emicida: AmarElo - It's All For Yesterday
##                                   Genre          Premiere Runtime IMDB.Score
## 1                           Documentary     July 14, 2017      89        8.1
## 2                           Documentary September 7, 2020      85        8.1
## 3                           Documentary   August 26, 2020     106        8.1
## 4                           Documentary   October 7, 2016     100        8.2
## 5                           Documentary     June 19, 2020     107        8.2
## 6  Animation/Christmas/Comedy/Adventure November 15, 2019      97        8.2
## 7                           Documentary    March 24, 2021      89        8.2
## 8                           Documentary  October 14, 2020     109        8.2
## 9                           Documentary November 24, 2017     114        8.3
## 10                          Documentary  October 23, 2019      51        8.3
## 11                         Concert Film      May 20, 2020      85        8.4
## 12                         Concert Film December 31, 2018     125        8.4
## 13                          Documentary   October 9, 2015      91        8.4
## 14                         One-man show December 16, 2018     153        8.5
## 15                          Documentary  December 8, 2020      89        8.6
##                    Language
## 1                   English
## 2                   English
## 3                   English
## 4                   English
## 5                   English
## 6                   English
## 7                   English
## 8                   Spanish
## 9                   English
## 10                  English
## 11                  English
## 12                  English
## 13 English/Ukranian/Russian
## 14                  English
## 15               Portuguese
f=df %>% filter(df$IMDB.Score >=9)
f
##                                      Title       Genre        Premiere Runtime
## 1 David Attenborough: A Life on Our Planet Documentary October 4, 2020      83
##   IMDB.Score Language
## 1          9  English
qqnorm(df$Runtime, main = 'QQ plot of df$Runtime', xlab = 'Theoretical', 
ylab = 'Quantiles for df$Runtime')
qqline(df$Runtime, lwd = 2, lty = 2)

qqnorm(df$IMDB.Score, main = 'QQ plot of df$IMDB.Score', xlab = 'Theoretical', 
ylab = 'Quantiles for df$IMDB.Score')
qqline(df$IMDB.Score, lwd = 2, lty = 2)

qqplot(df$Runtime, df$IMDB.Score)

qqp = qqplot(df$Runtime, df$IMDB.Score)
abline(lm(qqp$y ~ qqp$x))

t.test(df$Runtime, df$IMDB.Score)
## 
##  Welch Two Sample t-test
## 
## data:  df$Runtime and df$IMDB.Score
## t = 75.951, df = 584.45, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  85.04765 89.56296
## sample estimates:
## mean of x mean of y 
## 93.577055  6.271747
t.test(df$Runtime, df$IMDB.Score, var.equal = TRUE)
## 
##  Two Sample t-test
## 
## data:  df$Runtime and df$IMDB.Score
## t = 75.951, df = 1166, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  85.04999 89.56063
## sample estimates:
## mean of x mean of y 
## 93.577055  6.271747
t.test(df$Runtime, mu = 5)
## 
##  One Sample t-test
## 
## data:  df$Runtime
## t = 77.105, df = 583, p-value < 2.2e-16
## alternative hypothesis: true mean is not equal to 5
## 95 percent confidence interval:
##  91.32079 95.83332
## sample estimates:
## mean of x 
##  93.57705
t.test(df$IMDB.Score, mu = 5)
## 
##  One Sample t-test
## 
## data:  df$IMDB.Score
## t = 31.384, df = 583, p-value < 2.2e-16
## alternative hypothesis: true mean is not equal to 5
## 95 percent confidence interval:
##  6.192160 6.351333
## sample estimates:
## mean of x 
##  6.271747
t.test(df$Runtime, mu = 5, alternative = 'greater')
## 
##  One Sample t-test
## 
## data:  df$Runtime
## t = 77.105, df = 583, p-value < 2.2e-16
## alternative hypothesis: true mean is greater than 5
## 95 percent confidence interval:
##  91.68446      Inf
## sample estimates:
## mean of x 
##  93.57705
t.test(df$IMDB.Score, mu = 5, alternative = 'greater')
## 
##  One Sample t-test
## 
## data:  df$IMDB.Score
## t = 31.384, df = 583, p-value < 2.2e-16
## alternative hypothesis: true mean is greater than 5
## 95 percent confidence interval:
##  6.204988      Inf
## sample estimates:
## mean of x 
##  6.271747
wilcox.test(df$Runtime, df$IMDB.Score)
## 
##  Wilcoxon rank sum test with continuity correction
## 
## data:  df$Runtime and df$IMDB.Score
## W = 340338, p-value < 2.2e-16
## alternative hypothesis: true location shift is not equal to 0
cor(df$Runtime, df$IMDB.Score)
## [1] -0.04089629
x = cov(df$Runtime, df$IMDB.Score)
x
## [1] -1.111799
v = as.matrix(x)
cov2cor(v)
## Warning in sqrt(1/diag(V)): NaNs produced
## Warning in cov2cor(v): diag(.) had 0 or NA entries; non-finite result is
## doubtful
##      [,1]
## [1,]    1
cor.test(df$Runtime, df$IMDB.Score)
## 
##  Pearson's product-moment correlation
## 
## data:  df$Runtime and df$IMDB.Score
## t = -0.98744, df = 582, p-value = 0.3238
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  -0.12162699  0.04037194
## sample estimates:
##         cor 
## -0.04089629
chisq.test(df$Runtime)
## 
##  Chi-squared test for given probabilities
## 
## data:  df$Runtime
## X-squared = 4801.7, df = 583, p-value < 2.2e-16
chisq.test(df$IMDB.Score)
## 
##  Chi-squared test for given probabilities
## 
## data:  df$IMDB.Score
## X-squared = 89.14, df = 583, p-value = 1
boxplot(df$Runtime)

boxplot(df$IMDB.Score)

boxplot(df$Runtime,df$IMDB.Score)

boxplot(df$Runtime ~ df$IMDB.Score, data = df)

boxplot(df$Runtime, horizontal = T)
title(xlab = 'Time in min ')

boxplot(df$IMDB.Score, horizontal = T)
title(xlab = 'IMBD')

with(df, plot(df$Runtime[df$IMDB.Score== '9'], pch = 0))

with(df, plot(df$Runtime[df$IMDB.Score== '8'], pch = 0))

with(df, plot(df$Runtime[df$IMDB.Score== '7'], pch = 0))

with(df, plot(df$Runtime[df$IMDB.Score== '7'], pch = 2))

with(df, plot(df$IMDB.Score[df$Language== 'English'], pch = 2))

with(df, plot(df$IMDB.Score[df$Language== 'Hindi'], pch = 1))

with(df, plot(df$IMDB.Score[df$Language== 'Korean'], pch = 0))

with(df, plot(df$IMDB.Score[df$Language== 'Tamil'], pch = 2))

with(df, plot(df$IMDB.Score[df$Language== 'French'], pch = 1))

with(df, plot(df$IMDB.Score[df$Genre== 'Romance'], pch = 1))

with(df, plot(df$IMDB.Score[df$Genre== 'Comedy'], pch = 3))

with(df, plot(df$IMDB.Score[df$Genre== 'Documentary'], pch = 4))

with(df, plot(df$IMDB.Score[df$Genre== 'Biopic'], pch = 0))

library(dplyr)
library(gcookbook)

plot(df$Runtime, type = 'l' )

plot(df$IMDB.Score, type = 'l' )

plot(df$Runtime, type = 'b')

plot(df$IMDB.Score, type = 'b')

pie(df$Runtime)

pie(df$IMDB.Score)

english=df %>% filter(df$Language=="English")
pie(english$Runtime)

dotchart(df$Runtime)

dotchart(df$IMDB.Score)

barplot(df$Runtime)
title(xlab = 'movie', ylab = 'time')
box()

barplot(df$IMDB.Score)
title(xlab = 'movie', ylab = 'IMBD')
box()

barplot(df$IMDB.Score, horiz = T)
title(xlab = 'movie', ylab = 'time')
box()

barplot(df$IMDB.Score, horiz = T)
title(xlab = 'movie', ylab = 'Imbd')
box()

temp.aov = na.omit(aov(df$Runtime ~ df$IMDB.Score, data = df))
temp.aov
## Call:
##    aov(formula = df$Runtime ~ df$IMDB.Score, data = df)
## 
## Terms:
##                 df$IMDB.Score Residuals
## Sum of Squares          751.5  448573.0
## Deg. of Freedom             1       582
## 
## Residual standard error: 27.76228
## Estimated effects may be unbalanced
summary(temp.aov)
##                Df Sum Sq Mean Sq F value Pr(>F)
## df$IMDB.Score   1    751   751.5   0.975  0.324
## Residuals     582 448573   770.7
factor(df$Runtime)
##   [1] 58  81  79  94  90  147 112 149 73  139 58  112 97  101 90  25  144 115
##  [19] 102 100 64  97  99  120 105 89  97  107 99  95  37  89  83  46  85  88 
##  [37] 86  105 95  80  4   93  100 106 97  106 103 80  101 119 80  89  94  93 
##  [55] 96  113 86  100 102 86  104 88  97  105 90  99  10  106 98  94  112 117
##  [73] 70  81  103 94  98  131 87  60  112 102 99  116 92  83  97  112 116 102
##  [91] 121 95  93  92  98  85  78  120 92  101 119 101 112 96  114 97  101 56 
## [109] 100 94  94  21  104 63  100 126 106 86  142 108 102 92  83  94  92  103
## [127] 89  95  103 97  125 91  90  49  98  107 118 94  103 86  83  97  99  104
## [145] 102 89  98  125 89  94  94  85  34  86  91  108 95  100 90  112 86  124
## [163] 107 92  121 90  104 92  114 98  95  78  107 92  95  96  118 105 94  52 
## [181] 105 95  100 97  89  102 96  131 89  93  111 75  120 96  148 94  107 32 
## [199] 104 23  111 83  53  95  132 98  108 106 104 90  106 90  97  113 123 115
## [217] 105 101 102 122 128 82  102 80  94  123 104 85  84  103 95  100 89  116
## [235] 118 96  114 99  87  92  90  95  96  93  42  92  106 151 101 114 90  115
## [253] 92  72  139 98  92  111 98  104 95  88  102 30  99  129 87  117 104 111
## [271] 107 97  98  90  101 72  83  118 44  113 86  108 85  102 151 98  87  120
## [289] 134 109 85  103 94  97  88  37  112 102 100 96  113 16  119 97  81  98 
## [307] 95  96  107 41  87  101 97  103 90  125 116 99  82  97  28  108 93  74 
## [325] 60  9   21  100 155 55  123 103 93  119 40  120 98  104 91  95  101 105
## [343] 83  91  83  17  86  124 94  102 118 79  134 126 98  89  58  83  136 98 
## [361] 114 99  130 32  104 142 92  86  106 95  91  89  117 90  117 80  87  101
## [379] 19  106 54  111 132 97  106 111 124 116 112 144 76  101 92  19  39  102
## [397] 89  105 101 70  96  85  39  79  73  114 121 28  95  122 23  107 98  108
## [415] 92  100 97  7   96  100 132 103 121 114 57  95  83  17  105 131 30  112
## [433] 86  100 14  109 28  64  94  31  99  108 48  84  70  27  45  117 104 108
## [451] 121 36  30  47  110 92  80  49  73  40  96  106 97  94  78  81  87  91 
## [469] 91  95  126 31  58  41  138 112 114 125 99  82  98  136 97  107 92  39 
## [487] 133 89  124 99  101 97  124 129 121 140 13  108 11  118 121 24  100 101
## [505] 105 96  47  121 100 149 64  64  114 15  79  90  132 105 97  83  110 39 
## [523] 40  85  26  87  97  118 23  40  98  80  108 79  74  90  137 71  98  70 
## [541] 99  40  104 149 124 144 85  100 94  125 84  117 15  136 76  108 94  90 
## [559] 72  135 12  209 130 82  120 136 112 105 89  85  106 100 107 97  89  109
## [577] 114 51  85  125 91  153 89  83 
## 124 Levels: 4 7 9 10 11 12 13 14 15 16 17 19 21 23 24 25 26 27 28 30 31 ... 209
factor(df$IMDB.Score)
##   [1] 2.5 2.6 2.6 3.2 3.4 3.5 3.7 3.7 3.9 4.1 4.1 4.1 4.1 4.2 4.2 4.3 4.3 4.3
##  [19] 4.3 4.4 4.4 4.4 4.4 4.4 4.4 4.5 4.5 4.5 4.5 4.6 4.6 4.6 4.6 4.6 4.6 4.6
##  [37] 4.6 4.7 4.7 4.7 4.7 4.7 4.7 4.8 4.8 4.8 4.8 4.8 4.8 4.8 4.9 4.9 4.9 4.9
##  [55] 5   5   5   5   5   5.1 5.1 5.1 5.1 5.1 5.1 5.2 5.2 5.2 5.2 5.2 5.2 5.2
##  [73] 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.3 5.3 5.3 5.3 5.3 5.3
##  [91] 5.3 5.3 5.3 5.3 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.5
## [109] 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5
## [127] 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.7 5.7 5.7
## [145] 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.8
## [163] 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8
## [181] 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.9 5.9 5.9 5.9 5.9 5.9 5.9
## [199] 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 6   6   6   6   6   6   6   6   6  
## [217] 6   6   6   6   6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1
## [235] 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2
## [253] 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3
## [271] 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3
## [289] 6.3 6.3 6.3 6.3 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4
## [307] 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.5 6.5 6.5 6.5
## [325] 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5
## [343] 6.5 6.5 6.5 6.5 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6
## [361] 6.6 6.6 6.6 6.6 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7
## [379] 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.8 6.8 6.8 6.8 6.8 6.8 6.8
## [397] 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.9
## [415] 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9
## [433] 7   7   7   7   7   7   7   7   7   7   7   7   7   7   7   7   7   7  
## [451] 7   7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1
## [469] 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.2 7.2 7.2 7.2 7.2 7.2 7.2
## [487] 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.3 7.3 7.3 7.3 7.3
## [505] 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.4 7.4
## [523] 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5
## [541] 7.5 7.5 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.7 7.7 7.7 7.7 7.7 7.7
## [559] 7.7 7.7 7.8 7.8 7.8 7.9 7.9 7.9 7.9 8   8.1 8.1 8.1 8.2 8.2 8.2 8.2 8.2
## [577] 8.3 8.3 8.4 8.4 8.4 8.5 8.6 9  
## 54 Levels: 2.5 2.6 3.2 3.4 3.5 3.7 3.9 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 ... 9
testCol = c(rep(df$Runtime - df$IMDB.Score, length(df)))
head(testCol)
## [1]  55.5  78.4  76.4  90.8  86.6 143.5
test = data.frame(df, testCol)
head(test)
##             Title                 Genre          Premiere Runtime IMDB.Score
## 1 Enter the Anime           Documentary    August 5, 2019      58        2.5
## 2     Dark Forces              Thriller   August 21, 2020      81        2.6
## 3         The App Science fiction/Drama December 26, 2019      79        2.6
## 4  The Open House       Horror thriller  January 19, 2018      94        3.2
## 5     Kaali Khuhi               Mystery  October 30, 2020      90        3.4
## 6           Drive                Action  November 1, 2019     147        3.5
##           Language testCol
## 1 English/Japanese    55.5
## 2          Spanish    78.4
## 3          Italian    76.4
## 4          English    90.8
## 5            Hindi    86.6
## 6            Hindi   143.5
col(temp, as.factor = F)
##      [,1] [,2] [,3] [,4] [,5] [,6]
plot(1:10, 1:10, type = 'n')
opt = par(cex = 1.5)
text(1, 1, expression(hat(x)))
text(2, 2, expression(alpha==x))
text(3, 3, expression(beta==y))
text(4, 4, expression(frac(x, y)))
text(5, 5, expression(sum(x)))
text(6, 6, expression(sum(x^2)))
text(7, 7, expression(bar(x) == sum(frac(x[i], n), i==1, n)))
text(8, 8, expression(sqrt(x)))
text(9, 9, expression(sqrt(x, 3)))

head(df)
##             Title                 Genre          Premiere Runtime IMDB.Score
## 1 Enter the Anime           Documentary    August 5, 2019      58        2.5
## 2     Dark Forces              Thriller   August 21, 2020      81        2.6
## 3         The App Science fiction/Drama December 26, 2019      79        2.6
## 4  The Open House       Horror thriller  January 19, 2018      94        3.2
## 5     Kaali Khuhi               Mystery  October 30, 2020      90        3.4
## 6           Drive                Action  November 1, 2019     147        3.5
##           Language
## 1 English/Japanese
## 2          Spanish
## 3          Italian
## 4          English
## 5            Hindi
## 6            Hindi
x = df[ , 3:4]
head(x)
##            Premiere Runtime
## 1    August 5, 2019      58
## 2   August 21, 2020      81
## 3 December 26, 2019      79
## 4  January 19, 2018      94
## 5  October 30, 2020      90
## 6  November 1, 2019     147
y = df[ , 3:2]
head(y)
##            Premiere                 Genre
## 1    August 5, 2019           Documentary
## 2   August 21, 2020              Thriller
## 3 December 26, 2019 Science fiction/Drama
## 4  January 19, 2018       Horror thriller
## 5  October 30, 2020               Mystery
## 6  November 1, 2019                Action
z = df[ , 3:4]
head(z)
##            Premiere Runtime
## 1    August 5, 2019      58
## 2   August 21, 2020      81
## 3 December 26, 2019      79
## 4  January 19, 2018      94
## 5  October 30, 2020      90
## 6  November 1, 2019     147
plot(df$Runtime ~ df$IMDB.Score, data = df, main = 'plot 1')

par(opt)
plot(df$Runtime ~ df$IMDB.Score, data = df, main = 'plot 2')

plot.new()
plot.new()
plot(df$Runtime ~ df$IMDB.Score, data = df, main = 'plot 3')

cummeadian = function(x) {
tmp = seq_along(x)
for(i in 1:length(tmp)) tmp[i] = median(x[1:i])
print(x)}
cummeadian(df$Runtime)
##   [1]  58  81  79  94  90 147 112 149  73 139  58 112  97 101  90  25 144 115
##  [19] 102 100  64  97  99 120 105  89  97 107  99  95  37  89  83  46  85  88
##  [37]  86 105  95  80   4  93 100 106  97 106 103  80 101 119  80  89  94  93
##  [55]  96 113  86 100 102  86 104  88  97 105  90  99  10 106  98  94 112 117
##  [73]  70  81 103  94  98 131  87  60 112 102  99 116  92  83  97 112 116 102
##  [91] 121  95  93  92  98  85  78 120  92 101 119 101 112  96 114  97 101  56
## [109] 100  94  94  21 104  63 100 126 106  86 142 108 102  92  83  94  92 103
## [127]  89  95 103  97 125  91  90  49  98 107 118  94 103  86  83  97  99 104
## [145] 102  89  98 125  89  94  94  85  34  86  91 108  95 100  90 112  86 124
## [163] 107  92 121  90 104  92 114  98  95  78 107  92  95  96 118 105  94  52
## [181] 105  95 100  97  89 102  96 131  89  93 111  75 120  96 148  94 107  32
## [199] 104  23 111  83  53  95 132  98 108 106 104  90 106  90  97 113 123 115
## [217] 105 101 102 122 128  82 102  80  94 123 104  85  84 103  95 100  89 116
## [235] 118  96 114  99  87  92  90  95  96  93  42  92 106 151 101 114  90 115
## [253]  92  72 139  98  92 111  98 104  95  88 102  30  99 129  87 117 104 111
## [271] 107  97  98  90 101  72  83 118  44 113  86 108  85 102 151  98  87 120
## [289] 134 109  85 103  94  97  88  37 112 102 100  96 113  16 119  97  81  98
## [307]  95  96 107  41  87 101  97 103  90 125 116  99  82  97  28 108  93  74
## [325]  60   9  21 100 155  55 123 103  93 119  40 120  98 104  91  95 101 105
## [343]  83  91  83  17  86 124  94 102 118  79 134 126  98  89  58  83 136  98
## [361] 114  99 130  32 104 142  92  86 106  95  91  89 117  90 117  80  87 101
## [379]  19 106  54 111 132  97 106 111 124 116 112 144  76 101  92  19  39 102
## [397]  89 105 101  70  96  85  39  79  73 114 121  28  95 122  23 107  98 108
## [415]  92 100  97   7  96 100 132 103 121 114  57  95  83  17 105 131  30 112
## [433]  86 100  14 109  28  64  94  31  99 108  48  84  70  27  45 117 104 108
## [451] 121  36  30  47 110  92  80  49  73  40  96 106  97  94  78  81  87  91
## [469]  91  95 126  31  58  41 138 112 114 125  99  82  98 136  97 107  92  39
## [487] 133  89 124  99 101  97 124 129 121 140  13 108  11 118 121  24 100 101
## [505] 105  96  47 121 100 149  64  64 114  15  79  90 132 105  97  83 110  39
## [523]  40  85  26  87  97 118  23  40  98  80 108  79  74  90 137  71  98  70
## [541]  99  40 104 149 124 144  85 100  94 125  84 117  15 136  76 108  94  90
## [559]  72 135  12 209 130  82 120 136 112 105  89  85 106 100 107  97  89 109
## [577] 114  51  85 125  91 153  89  83
cummeadian1 = function(x) {
tmp = seq_along(x)
for(i in 1:length(tmp)) tmp[i] = median(x[1:i])
print(x)}
cummeadian(df$IMDB.Score)
##   [1] 2.5 2.6 2.6 3.2 3.4 3.5 3.7 3.7 3.9 4.1 4.1 4.1 4.1 4.2 4.2 4.3 4.3 4.3
##  [19] 4.3 4.4 4.4 4.4 4.4 4.4 4.4 4.5 4.5 4.5 4.5 4.6 4.6 4.6 4.6 4.6 4.6 4.6
##  [37] 4.6 4.7 4.7 4.7 4.7 4.7 4.7 4.8 4.8 4.8 4.8 4.8 4.8 4.8 4.9 4.9 4.9 4.9
##  [55] 5.0 5.0 5.0 5.0 5.0 5.1 5.1 5.1 5.1 5.1 5.1 5.2 5.2 5.2 5.2 5.2 5.2 5.2
##  [73] 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.2 5.3 5.3 5.3 5.3 5.3 5.3
##  [91] 5.3 5.3 5.3 5.3 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.4 5.5
## [109] 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5
## [127] 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.7 5.7 5.7
## [145] 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.8
## [163] 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8
## [181] 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.9 5.9 5.9 5.9 5.9 5.9 5.9
## [199] 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0
## [217] 6.0 6.0 6.0 6.0 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1
## [235] 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2
## [253] 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3
## [271] 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3
## [289] 6.3 6.3 6.3 6.3 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4
## [307] 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.5 6.5 6.5 6.5
## [325] 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5
## [343] 6.5 6.5 6.5 6.5 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6
## [361] 6.6 6.6 6.6 6.6 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7
## [379] 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.8 6.8 6.8 6.8 6.8 6.8 6.8
## [397] 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.9
## [415] 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9 6.9
## [433] 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0 7.0
## [451] 7.0 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1
## [469] 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.2 7.2 7.2 7.2 7.2 7.2 7.2
## [487] 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.3 7.3 7.3 7.3 7.3
## [505] 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.4 7.4
## [523] 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.4 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5
## [541] 7.5 7.5 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.6 7.7 7.7 7.7 7.7 7.7 7.7
## [559] 7.7 7.7 7.8 7.8 7.8 7.9 7.9 7.9 7.9 8.0 8.1 8.1 8.1 8.2 8.2 8.2 8.2 8.2
## [577] 8.3 8.3 8.4 8.4 8.4 8.5 8.6 9.0
log2 = function(x) log(x, base = 2)
log2
## function(x) log(x, base = 2)
log2(df$Runtime)
##   [1] 5.857981 6.339850 6.303781 6.554589 6.491853 7.199672 6.807355 7.219169
##   [9] 6.189825 7.118941 5.857981 6.807355 6.599913 6.658211 6.491853 4.643856
##  [17] 7.169925 6.845490 6.672425 6.643856 6.000000 6.599913 6.629357 6.906891
##  [25] 6.714246 6.475733 6.599913 6.741467 6.629357 6.569856 5.209453 6.475733
##  [33] 6.375039 5.523562 6.409391 6.459432 6.426265 6.714246 6.569856 6.321928
##  [41] 2.000000 6.539159 6.643856 6.727920 6.599913 6.727920 6.686501 6.321928
##  [49] 6.658211 6.894818 6.321928 6.475733 6.554589 6.539159 6.584963 6.820179
##  [57] 6.426265 6.643856 6.672425 6.426265 6.700440 6.459432 6.599913 6.714246
##  [65] 6.491853 6.629357 3.321928 6.727920 6.614710 6.554589 6.807355 6.870365
##  [73] 6.129283 6.339850 6.686501 6.554589 6.614710 7.033423 6.442943 5.906891
##  [81] 6.807355 6.672425 6.629357 6.857981 6.523562 6.375039 6.599913 6.807355
##  [89] 6.857981 6.672425 6.918863 6.569856 6.539159 6.523562 6.614710 6.409391
##  [97] 6.285402 6.906891 6.523562 6.658211 6.894818 6.658211 6.807355 6.584963
## [105] 6.832890 6.599913 6.658211 5.807355 6.643856 6.554589 6.554589 4.392317
## [113] 6.700440 5.977280 6.643856 6.977280 6.727920 6.426265 7.149747 6.754888
## [121] 6.672425 6.523562 6.375039 6.554589 6.523562 6.686501 6.475733 6.569856
## [129] 6.686501 6.599913 6.965784 6.507795 6.491853 5.614710 6.614710 6.741467
## [137] 6.882643 6.554589 6.686501 6.426265 6.375039 6.599913 6.629357 6.700440
## [145] 6.672425 6.475733 6.614710 6.965784 6.475733 6.554589 6.554589 6.409391
## [153] 5.087463 6.426265 6.507795 6.754888 6.569856 6.643856 6.491853 6.807355
## [161] 6.426265 6.954196 6.741467 6.523562 6.918863 6.491853 6.700440 6.523562
## [169] 6.832890 6.614710 6.569856 6.285402 6.741467 6.523562 6.569856 6.584963
## [177] 6.882643 6.714246 6.554589 5.700440 6.714246 6.569856 6.643856 6.599913
## [185] 6.475733 6.672425 6.584963 7.033423 6.475733 6.539159 6.794416 6.228819
## [193] 6.906891 6.584963 7.209453 6.554589 6.741467 5.000000 6.700440 4.523562
## [201] 6.794416 6.375039 5.727920 6.569856 7.044394 6.614710 6.754888 6.727920
## [209] 6.700440 6.491853 6.727920 6.491853 6.599913 6.820179 6.942515 6.845490
## [217] 6.714246 6.658211 6.672425 6.930737 7.000000 6.357552 6.672425 6.321928
## [225] 6.554589 6.942515 6.700440 6.409391 6.392317 6.686501 6.569856 6.643856
## [233] 6.475733 6.857981 6.882643 6.584963 6.832890 6.629357 6.442943 6.523562
## [241] 6.491853 6.569856 6.584963 6.539159 5.392317 6.523562 6.727920 7.238405
## [249] 6.658211 6.832890 6.491853 6.845490 6.523562 6.169925 7.118941 6.614710
## [257] 6.523562 6.794416 6.614710 6.700440 6.569856 6.459432 6.672425 4.906891
## [265] 6.629357 7.011227 6.442943 6.870365 6.700440 6.794416 6.741467 6.599913
## [273] 6.614710 6.491853 6.658211 6.169925 6.375039 6.882643 5.459432 6.820179
## [281] 6.426265 6.754888 6.409391 6.672425 7.238405 6.614710 6.442943 6.906891
## [289] 7.066089 6.768184 6.409391 6.686501 6.554589 6.599913 6.459432 5.209453
## [297] 6.807355 6.672425 6.643856 6.584963 6.820179 4.000000 6.894818 6.599913
## [305] 6.339850 6.614710 6.569856 6.584963 6.741467 5.357552 6.442943 6.658211
## [313] 6.599913 6.686501 6.491853 6.965784 6.857981 6.629357 6.357552 6.599913
## [321] 4.807355 6.754888 6.539159 6.209453 5.906891 3.169925 4.392317 6.643856
## [329] 7.276124 5.781360 6.942515 6.686501 6.539159 6.894818 5.321928 6.906891
## [337] 6.614710 6.700440 6.507795 6.569856 6.658211 6.714246 6.375039 6.507795
## [345] 6.375039 4.087463 6.426265 6.954196 6.554589 6.672425 6.882643 6.303781
## [353] 7.066089 6.977280 6.614710 6.475733 5.857981 6.375039 7.087463 6.614710
## [361] 6.832890 6.629357 7.022368 5.000000 6.700440 7.149747 6.523562 6.426265
## [369] 6.727920 6.569856 6.507795 6.475733 6.870365 6.491853 6.870365 6.321928
## [377] 6.442943 6.658211 4.247928 6.727920 5.754888 6.794416 7.044394 6.599913
## [385] 6.727920 6.794416 6.954196 6.857981 6.807355 7.169925 6.247928 6.658211
## [393] 6.523562 4.247928 5.285402 6.672425 6.475733 6.714246 6.658211 6.129283
## [401] 6.584963 6.409391 5.285402 6.303781 6.189825 6.832890 6.918863 4.807355
## [409] 6.569856 6.930737 4.523562 6.741467 6.614710 6.754888 6.523562 6.643856
## [417] 6.599913 2.807355 6.584963 6.643856 7.044394 6.686501 6.918863 6.832890
## [425] 5.832890 6.569856 6.375039 4.087463 6.714246 7.033423 4.906891 6.807355
## [433] 6.426265 6.643856 3.807355 6.768184 4.807355 6.000000 6.554589 4.954196
## [441] 6.629357 6.754888 5.584963 6.392317 6.129283 4.754888 5.491853 6.870365
## [449] 6.700440 6.754888 6.918863 5.169925 4.906891 5.554589 6.781360 6.523562
## [457] 6.321928 5.614710 6.189825 5.321928 6.584963 6.727920 6.599913 6.554589
## [465] 6.285402 6.339850 6.442943 6.507795 6.507795 6.569856 6.977280 4.954196
## [473] 5.857981 5.357552 7.108524 6.807355 6.832890 6.965784 6.629357 6.357552
## [481] 6.614710 7.087463 6.599913 6.741467 6.523562 5.285402 7.055282 6.475733
## [489] 6.954196 6.629357 6.658211 6.599913 6.954196 7.011227 6.918863 7.129283
## [497] 3.700440 6.754888 3.459432 6.882643 6.918863 4.584963 6.643856 6.658211
## [505] 6.714246 6.584963 5.554589 6.918863 6.643856 7.219169 6.000000 6.000000
## [513] 6.832890 3.906891 6.303781 6.491853 7.044394 6.714246 6.599913 6.375039
## [521] 6.781360 5.285402 5.321928 6.409391 4.700440 6.442943 6.599913 6.882643
## [529] 4.523562 5.321928 6.614710 6.321928 6.754888 6.303781 6.209453 6.491853
## [537] 7.098032 6.149747 6.614710 6.129283 6.629357 5.321928 6.700440 7.219169
## [545] 6.954196 7.169925 6.409391 6.643856 6.554589 6.965784 6.392317 6.870365
## [553] 3.906891 7.087463 6.247928 6.754888 6.554589 6.491853 6.169925 7.076816
## [561] 3.584963 7.707359 7.022368 6.357552 6.906891 7.087463 6.807355 6.714246
## [569] 6.475733 6.409391 6.727920 6.643856 6.741467 6.599913 6.475733 6.768184
## [577] 6.832890 5.672425 6.409391 6.965784 6.507795 7.257388 6.475733 6.375039
log2(df$IMDB.Score)
##   [1] 1.321928 1.378512 1.378512 1.678072 1.765535 1.807355 1.887525 1.887525
##   [9] 1.963474 2.035624 2.035624 2.035624 2.035624 2.070389 2.070389 2.104337
##  [17] 2.104337 2.104337 2.104337 2.137504 2.137504 2.137504 2.137504 2.137504
##  [25] 2.137504 2.169925 2.169925 2.169925 2.169925 2.201634 2.201634 2.201634
##  [33] 2.201634 2.201634 2.201634 2.201634 2.201634 2.232661 2.232661 2.232661
##  [41] 2.232661 2.232661 2.232661 2.263034 2.263034 2.263034 2.263034 2.263034
##  [49] 2.263034 2.263034 2.292782 2.292782 2.292782 2.292782 2.321928 2.321928
##  [57] 2.321928 2.321928 2.321928 2.350497 2.350497 2.350497 2.350497 2.350497
##  [65] 2.350497 2.378512 2.378512 2.378512 2.378512 2.378512 2.378512 2.378512
##  [73] 2.378512 2.378512 2.378512 2.378512 2.378512 2.378512 2.378512 2.378512
##  [81] 2.378512 2.378512 2.378512 2.378512 2.405992 2.405992 2.405992 2.405992
##  [89] 2.405992 2.405992 2.405992 2.405992 2.405992 2.405992 2.432959 2.432959
##  [97] 2.432959 2.432959 2.432959 2.432959 2.432959 2.432959 2.432959 2.432959
## [105] 2.432959 2.432959 2.432959 2.459432 2.459432 2.459432 2.459432 2.459432
## [113] 2.459432 2.459432 2.459432 2.459432 2.459432 2.459432 2.459432 2.459432
## [121] 2.459432 2.459432 2.459432 2.459432 2.459432 2.459432 2.485427 2.485427
## [129] 2.485427 2.485427 2.485427 2.485427 2.485427 2.485427 2.485427 2.485427
## [137] 2.485427 2.485427 2.485427 2.485427 2.485427 2.510962 2.510962 2.510962
## [145] 2.510962 2.510962 2.510962 2.510962 2.510962 2.510962 2.510962 2.510962
## [153] 2.510962 2.510962 2.510962 2.510962 2.510962 2.510962 2.510962 2.510962
## [161] 2.510962 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053
## [169] 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053
## [177] 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053
## [185] 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053 2.536053 2.560715
## [193] 2.560715 2.560715 2.560715 2.560715 2.560715 2.560715 2.560715 2.560715
## [201] 2.560715 2.560715 2.560715 2.560715 2.560715 2.560715 2.560715 2.584963
## [209] 2.584963 2.584963 2.584963 2.584963 2.584963 2.584963 2.584963 2.584963
## [217] 2.584963 2.584963 2.584963 2.584963 2.608809 2.608809 2.608809 2.608809
## [225] 2.608809 2.608809 2.608809 2.608809 2.608809 2.608809 2.608809 2.608809
## [233] 2.608809 2.608809 2.608809 2.608809 2.608809 2.608809 2.608809 2.608809
## [241] 2.608809 2.608809 2.608809 2.608809 2.632268 2.632268 2.632268 2.632268
## [249] 2.632268 2.632268 2.632268 2.632268 2.632268 2.632268 2.632268 2.632268
## [257] 2.632268 2.632268 2.632268 2.632268 2.632268 2.632268 2.655352 2.655352
## [265] 2.655352 2.655352 2.655352 2.655352 2.655352 2.655352 2.655352 2.655352
## [273] 2.655352 2.655352 2.655352 2.655352 2.655352 2.655352 2.655352 2.655352
## [281] 2.655352 2.655352 2.655352 2.655352 2.655352 2.655352 2.655352 2.655352
## [289] 2.655352 2.655352 2.655352 2.655352 2.678072 2.678072 2.678072 2.678072
## [297] 2.678072 2.678072 2.678072 2.678072 2.678072 2.678072 2.678072 2.678072
## [305] 2.678072 2.678072 2.678072 2.678072 2.678072 2.678072 2.678072 2.678072
## [313] 2.678072 2.678072 2.678072 2.678072 2.678072 2.678072 2.678072 2.678072
## [321] 2.700440 2.700440 2.700440 2.700440 2.700440 2.700440 2.700440 2.700440
## [329] 2.700440 2.700440 2.700440 2.700440 2.700440 2.700440 2.700440 2.700440
## [337] 2.700440 2.700440 2.700440 2.700440 2.700440 2.700440 2.700440 2.700440
## [345] 2.700440 2.700440 2.722466 2.722466 2.722466 2.722466 2.722466 2.722466
## [353] 2.722466 2.722466 2.722466 2.722466 2.722466 2.722466 2.722466 2.722466
## [361] 2.722466 2.722466 2.722466 2.722466 2.744161 2.744161 2.744161 2.744161
## [369] 2.744161 2.744161 2.744161 2.744161 2.744161 2.744161 2.744161 2.744161
## [377] 2.744161 2.744161 2.744161 2.744161 2.744161 2.744161 2.744161 2.744161
## [385] 2.744161 2.744161 2.744161 2.744161 2.744161 2.765535 2.765535 2.765535
## [393] 2.765535 2.765535 2.765535 2.765535 2.765535 2.765535 2.765535 2.765535
## [401] 2.765535 2.765535 2.765535 2.765535 2.765535 2.765535 2.765535 2.765535
## [409] 2.765535 2.765535 2.765535 2.765535 2.765535 2.786596 2.786596 2.786596
## [417] 2.786596 2.786596 2.786596 2.786596 2.786596 2.786596 2.786596 2.786596
## [425] 2.786596 2.786596 2.786596 2.786596 2.786596 2.786596 2.786596 2.786596
## [433] 2.807355 2.807355 2.807355 2.807355 2.807355 2.807355 2.807355 2.807355
## [441] 2.807355 2.807355 2.807355 2.807355 2.807355 2.807355 2.807355 2.807355
## [449] 2.807355 2.807355 2.807355 2.827819 2.827819 2.827819 2.827819 2.827819
## [457] 2.827819 2.827819 2.827819 2.827819 2.827819 2.827819 2.827819 2.827819
## [465] 2.827819 2.827819 2.827819 2.827819 2.827819 2.827819 2.827819 2.827819
## [473] 2.827819 2.827819 2.827819 2.827819 2.827819 2.827819 2.827819 2.847997
## [481] 2.847997 2.847997 2.847997 2.847997 2.847997 2.847997 2.847997 2.847997
## [489] 2.847997 2.847997 2.847997 2.847997 2.847997 2.847997 2.847997 2.847997
## [497] 2.847997 2.847997 2.847997 2.867896 2.867896 2.867896 2.867896 2.867896
## [505] 2.867896 2.867896 2.867896 2.867896 2.867896 2.867896 2.867896 2.867896
## [513] 2.867896 2.867896 2.867896 2.867896 2.867896 2.867896 2.867896 2.867896
## [521] 2.887525 2.887525 2.887525 2.887525 2.887525 2.887525 2.887525 2.887525
## [529] 2.887525 2.887525 2.887525 2.887525 2.906891 2.906891 2.906891 2.906891
## [537] 2.906891 2.906891 2.906891 2.906891 2.906891 2.906891 2.925999 2.925999
## [545] 2.925999 2.925999 2.925999 2.925999 2.925999 2.925999 2.925999 2.925999
## [553] 2.944858 2.944858 2.944858 2.944858 2.944858 2.944858 2.944858 2.944858
## [561] 2.963474 2.963474 2.963474 2.981853 2.981853 2.981853 2.981853 3.000000
## [569] 3.017922 3.017922 3.017922 3.035624 3.035624 3.035624 3.035624 3.035624
## [577] 3.053111 3.053111 3.070389 3.070389 3.070389 3.087463 3.104337 3.169925
manning = function(radius, gradient, coef=0.1125) (radius^(2/3)*gradient^0.5/coef)
manning(radius = 1, gradient = 1/500)
## [1] 0.3975232
nlevels(df)
## [1] 0
df_matrix = data.matrix(df)
df_matrix
##        Title Genre Premiere Runtime IMDB.Score Language
##   [1,]   148    46       59      58        2.5        7
##   [2,]   121   107       48      81        2.6       30
##   [3,]   436    94       86      79        2.6       21
##   [4,]   503    65      139      94        3.2        3
##   [5,]   245    74      343      90        3.4       19
##   [6,]   137     1      276     147        3.5       19
##   [7,]   256    33       94     112        3.7       38
##   [8,]   482    57      203     149        3.7        3
##   [9,]   331    73      221      73        3.9        3
##  [10,]   381    33      252     139        4.1       19
##  [11,]   383    46       19      58        4.1        3
##  [12,]   446    47      301     112        4.1       24
##  [13,]   573    82      372      97        4.1       20
##  [14,]    33     4      311     101        4.2       25
##  [15,]   285   107      292      90        4.2        3
##  [16,]    27    46       77      25        4.3       30
##  [17,]   181    63      129     144        4.3       19
##  [18,]   485    76      114     115        4.3        3
##  [19,]   567    33      130     102        4.3       24
##  [20,]   124    65       50     100        4.4        3
##  [21,]   196    46      361      64        4.4        3
##  [22,]   385   107      170      97        4.4        3
##  [23,]   395    33       41      99        4.4        3
##  [24,]   465   107      120     120        4.4       19
##  [25,]   536   102       36     105        4.4        3
##  [26,]   155   107      167      89        4.5        3
##  [27,]   243    82       14      97        4.5        2
##  [28,]   392    33      181     107        4.5        3
##  [29,]   497    33      104      99        4.5       16
##  [30,]     7    33       97      95        4.6       21
##  [31,]    26    46      261      37        4.6       11
##  [32,]   218    61      339      89        4.6        3
##  [33,]   333    81      115      83        4.6       16
##  [34,]   340    33       90      46        4.6       29
##  [35,]   349    61      335      85        4.6        3
##  [36,]   511    33      164      88        4.6       21
##  [37,]   564    46      162      86        4.6       16
##  [38,]   163    47      305     105        4.7       15
##  [39,]   230    94      138      95        4.7        3
##  [40,]   389     1      232      80        4.7       16
##  [41,]   404    22       13       4        4.7        3
##  [42,]   441    47      329      93        4.7       21
##  [43,]   565   101       85     100        4.7        3
##  [44,]    97   107       94     106        4.8       18
##  [45,]   105    56      152      97        4.8        3
##  [46,]   292   107      240     106        4.8       19
##  [47,]   306    61      341     103        4.8       28
##  [48,]   423    33      140      80        4.8        3
##  [49,]   492    33        2     101        4.8        3
##  [50,]   518   114       66     119        4.8        3
##  [51,]   139     1       10      80        4.9       16
##  [52,]   158    21       40      89        4.9        3
##  [53,]   204    52      302      94        4.9        3
##  [54,]   453    47      343      93        4.9       30
##  [55,]    28    33      143      96        5.0       29
##  [56,]   210     3      160     113        5.0        3
##  [57,]   269    47      323      86        5.0       20
##  [58,]   351   107      163     100        5.0        3
##  [59,]   414    82      106     102        5.0       28
##  [60,]    85    61      332      86        5.1       27
##  [61,]   103   107      134     104        5.1        3
##  [62,]   104     4       29      88        5.1        3
##  [63,]   138   105       15      97        5.1        3
##  [64,]   175    85      119     105        5.1       20
##  [65,]   481    13      172      90        5.1        3
##  [66,]     1    33      389      99        5.2        3
##  [67,]    43    11       47      10        5.2        3
##  [68,]   128    82      179     106        5.2        3
##  [69,]   134    31      295      98        5.2        3
##  [70,]   156    33      171      94        5.2        3
##  [71,]   165    47      115     112        5.2       26
##  [72,]   180    61      264     117        5.2       36
##  [73,]   185    33      110      70        5.2        3
##  [74,]   192    33      273      81        5.2        3
##  [75,]   211    33      349     103        5.2        3
##  [76,]   220    33      262      94        5.2        3
##  [77,]   366    91      261      98        5.2        3
##  [78,]   379    33        5     131        5.2        3
##  [79,]   387    90      250      87        5.2        3
##  [80,]   416   109      247      60        5.2        3
##  [81,]   418    46      124     112        5.2        3
##  [82,]   425    34      361     102        5.2        3
##  [83,]   440    47      301      99        5.2       21
##  [84,]   528    33       23     116        5.2        3
##  [85,]    16    82      304      92        5.3        3
##  [86,]    58    33       57      83        5.3       16
##  [87,]   120   107       30      97        5.3        3
##  [88,]   191    47       39     112        5.3       19
##  [89,]   228   107      268     116        5.3       30
##  [90,]   498   107      387     102        5.3       16
##  [91,]   535    61       28     121        5.3        3
##  [92,]   543    82      195      95        5.3       16
##  [93,]   574    47        3      93        5.3       30
##  [94,]   580    47       51      92        5.3        3
##  [95,]    12    38      323      98        5.4        3
##  [96,]    15    82       95      85        5.4        3
##  [97,]   129    33      270      78        5.4       30
##  [98,]   133    47      372     120        5.4       19
##  [99,]   171   104      373      92        5.4       18
## [100,]   174     6      221     101        5.4        3
## [101,]   190   107      233     119        5.4       19
## [102,]   226    61      344     101        5.4        3
## [103,]   278    47       14     112        5.4       16
## [104,]   302    33       38      96        5.4        3
## [105,]   325     7      136     114        5.4        3
## [106,]   514    82      286      97        5.4        3
## [107,]   555    87      156     101        5.4       21
## [108,]    23    35       93      56        5.5        3
## [109,]    66    70      336     100        5.5        3
## [110,]   123   107       64      94        5.5       15
## [111,]   179    33       25      94        5.5       29
## [112,]   182    46      326      21        5.5        3
## [113,]   209    33      283     104        5.5       19
## [114,]   247   109      127      63        5.5        3
## [115,]   271    82        2     100        5.5        3
## [116,]   297    95      116     126        5.5        3
## [117,]   314    42      329     106        5.5        3
## [118,]   353   107      106      86        5.5       34
## [119,]   365    79        7     142        5.5       22
## [120,]   415    33      139     108        5.5        3
## [121,]   451    90      123     102        5.5        3
## [122,]   479    82      291      92        5.5        3
## [123,]   487    10      182      83        5.5        3
## [124,]   507    28       37      94        5.5        3
## [125,]   556    33       32      92        5.5        3
## [126,]   577    33      241     103        5.5        3
## [127,]    79    28      315      89        5.6       31
## [128,]    80    33      183      95        5.6        3
## [129,]   136    34      136     103        5.6       29
## [130,]   154    82       55      97        5.6        3
## [131,]   201   107      381     125        5.6        3
## [132,]   272    82      383      91        5.6        3
## [133,]   316    80      192      90        5.6       38
## [134,]   380   109      337      49        5.6        3
## [135,]   483    34      131      98        5.6        3
## [136,]   484    85      124     107        5.6       21
## [137,]   495    90       82     118        5.6        3
## [138,]   508   107      368      94        5.6       30
## [139,]   521    33       48     103        5.6        3
## [140,]   559    64      329      86        5.6        3
## [141,]   575    46        6      83        5.6        3
## [142,]    24    29      226      97        5.7        3
## [143,]    92    86      225      99        5.7       21
## [144,]    98    85       73     104        5.7        3
## [145,]   117    51      356     102        5.7       30
## [146,]   141    45       99      89        5.7        3
## [147,]   144    61      327      98        5.7        3
## [148,]   184    82      352     125        5.7       19
## [149,]   187    47      249      89        5.7        3
## [150,]   259    33      151      94        5.7        3
## [151,]   260    36      353      94        5.7        3
## [152,]   318    46      190      85        5.7       36
## [153,]   323    46       68      34        5.7        3
## [154,]   338     1      159      86        5.7        3
## [155,]   342   107        6      91        5.7       28
## [156,]   461     4      265     108        5.7        3
## [157,]   470    82      287      95        5.7        3
## [158,]   532    78      248     100        5.7        3
## [159,]   533    33      246      90        5.7        3
## [160,]   560   107      103     112        5.7        3
## [161,]   582    33      209      86        5.7        3
## [162,]     4    34      228     124        5.8       26
## [163,]    13    82       72     107        5.8        3
## [164,]    14    82      285      92        5.8        3
## [165,]    34    47      240     121        5.8        3
## [166,]    45    47      276      90        5.8        3
## [167,]    62    27       74     104        5.8        3
## [168,]    88    33       23      92        5.8        3
## [169,]    95    47      203     114        5.8       19
## [170,]   102    47       48      98        5.8       19
## [171,]   151    96      175      95        5.8        3
## [172,]   193    82      230      78        5.8        3
## [173,]   216   107      248     107        5.8        3
## [174,]   255    82      309      92        5.8        3
## [175,]   282    69      318      95        5.8        3
## [176,]   319    82      307      96        5.8        3
## [177,]   347    34      304     118        5.8       19
## [178,]   364    82       30     105        5.8       29
## [179,]   367    89       10      94        5.8       18
## [180,]   371    75       24      52        5.8        3
## [181,]   400    83      387     105        5.8        3
## [182,]   403    45       24      95        5.8        3
## [183,]   409    89       26     100        5.8        3
## [184,]   427    96      201      97        5.8        3
## [185,]   433    33       49      89        5.8        3
## [186,]   438    39      355     102        5.8        3
## [187,]   450    55       98      96        5.8        2
## [188,]   478    82      174     131        5.8        3
## [189,]   509    82        3      89        5.8        3
## [190,]   569    47      279      93        5.8       18
## [191,]   583    82      329     111        5.8       30
## [192,]     8    47       33      75        5.9        3
## [193,]    17   107      137     120        5.9        3
## [194,]    41    97       33      96        5.9        3
## [195,]    54   115      256     148        5.9        3
## [196,]    87    77      284      94        5.9        3
## [197,]   140    74      283     107        5.9        3
## [198,]   170    69      166      32        5.9        3
## [199,]   207    47      126     104        5.9        3
## [200,]   309    46      381      23        5.9        3
## [201,]   283    82      227     111        5.9       19
## [202,]   455   107      227      83        5.9       16
## [203,]   496    46      130      53        5.9        3
## [204,]   512    34      133      95        5.9        3
## [205,]   515    70       67     132        5.9        3
## [206,]   551     4      278      98        5.9        3
## [207,]   553    98      218     108        5.9       21
## [208,]   106    27        4     106        6.0        3
## [209,]   168    47      272     104        6.0       21
## [210,]   221    96      147      90        6.0        3
## [211,]   273    47       62     106        6.0       19
## [212,]   240    47      235      90        6.0        3
## [213,]   294    37      187      97        6.0        3
## [214,]   344   101       40     113        6.0        3
## [215,]   350    88      331     123        6.0        3
## [216,]   448    30      299     115        6.0        3
## [217,]   477    82      242     105        6.0        3
## [218,]   513    82      284     101        6.0        3
## [219,]   542    82      108     102        6.0        3
## [220,]   563   112      263     122        6.0        3
## [221,]     9     1       70     128        6.1        3
## [222,]    70    33      374      82        6.1        3
## [223,]    84    47      208     102        6.1        3
## [224,]    91    46       24      80        6.1        3
## [225,]   126    47      213      94        6.1        3
## [226,]   162    51      149     123        6.1        3
## [227,]   202    84      341     104        6.1        3
## [228,]   203     9      276      85        6.1        3
## [229,]   208    46      269      84        6.1        3
## [230,]   258    33       56     103        6.1        3
## [231,]   267    42      211      95        6.1        3
## [232,]   321    33       45     100        6.1        3
## [233,]   334     8      215      89        6.1        3
## [234,]   372    42      343     116        6.1       16
## [235,]   390    27       10     118        6.1        3
## [236,]   421    47      155      96        6.1       38
## [237,]   431    47        1     114        6.1       20
## [238,]   475   114      277      99        6.1       29
## [239,]   491    82      259      87        6.1        3
## [240,]   499    27      222      92        6.1        3
## [241,]   510    62      261      90        6.1        3
## [242,]   549    47      136      95        6.1       19
## [243,]   557   107       54      96        6.1       30
## [244,]   579    44       61      93        6.1        3
## [245,]    32   100      289      42        6.2        3
## [246,]    60    27      264      92        6.2       21
## [247,]    67    47      149     106        6.2       30
## [248,]   100    47      308     151        6.2        3
## [249,]   113    34       43     101        6.2       20
## [250,]   195    33       36     114        6.2       38
## [251,]   198    97      127      90        6.2        3
## [252,]   225   107      380     115        6.2        3
## [253,]   266   107      192      92        6.2       16
## [254,]   310    13       40      72        6.2        3
## [255,]   312   107      174     139        6.2       30
## [256,]   377    27      221      98        6.2        3
## [257,]   405    82       12      92        6.2        3
## [258,]   412     4      233     111        6.2        3
## [259,]   480    47      362      98        6.2        3
## [260,]   516    46       23     104        6.2        3
## [261,]   561    46       63      95        6.2        3
## [262,]   576    33       34      88        6.2        3
## [263,]     5    66      330     102        6.3        3
## [264,]    22    46      258      30        6.3       11
## [265,]    31    82      205      99        6.3        3
## [266,]    51    62      316     129        6.3        3
## [267,]    69    52      212      87        6.3        3
## [268,]    82   108       81     117        6.3        3
## [269,]    90    50      251     104        6.3        3
## [270,]   108    47       14     111        6.3        3
## [271,]   159    54      192     107        6.3        3
## [272,]   178    33      216      97        6.3       29
## [273,]   217    82        4      98        6.3       16
## [274,]   241    47      148      90        6.3       20
## [275,]   296    47       12     101        6.3       19
## [276,]   301    46      264      72        6.3        3
## [277,]   308    47      298      83        6.3       30
## [278,]   339     1      144     118        6.3        3
## [279,]   341    33       79      44        6.3       29
## [280,]   378   111       17     113        6.3        3
## [281,]   398    43      206      86        6.3        3
## [282,]   410    93      101     108        6.3        3
## [283,]   437   106      319      85        6.3        3
## [284,]   460    94      231     102        6.3        3
## [285,]   463    47      313     151        6.3       22
## [286,]   486    34      327      98        6.3        3
## [287,]   488    46      228      87        6.3        3
## [288,]   506    42      237     120        6.3        7
## [289,]   539   107       20     134        6.3       24
## [290,]   541    82      109     109        6.3        3
## [291,]   548    46       53      85        6.3        3
## [292,]   554    47      227     103        6.3        3
## [293,]    46    46       60      94        6.4       16
## [294,]    52    41       80      97        6.4        3
## [295,]    55    96      367      88        6.4        3
## [296,]    75    46      379      37        6.4       11
## [297,]   107    72       83     112        6.4       30
## [298,]   166    97      230     102        6.4        3
## [299,]   169   107      313     100        6.4        3
## [300,]   231    47      113      96        6.4        3
## [301,]   232    82      112     113        6.4       18
## [302,]   238    46       46      16        6.4        3
## [303,]   254    85      106     119        6.4       20
## [304,]   295    46       27      97        6.4        3
## [305,]   300    46       69      81        6.4        3
## [306,]   303    34      375      98        6.4        3
## [307,]   326    20      334      95        6.4        3
## [308,]   417    47      317      96        6.4       16
## [309,]   419    46      366     107        6.4        3
## [310,]   422    15      380      41        6.4        3
## [311,]   424    46      212      87        6.4        3
## [312,]   468    34      135     101        6.4       20
## [313,]   493    46      273      97        6.4        3
## [314,]   501   107      224     103        6.4       30
## [315,]   531    19       18      90        6.4        3
## [316,]   550     3      210     125        6.4        3
## [317,]   552    46      381     116        6.4       32
## [318,]   562    47      235      99        6.4        3
## [319,]   571     5      330      82        6.4        3
## [320,]   572    82      128      97        6.4        3
## [321,]    11    46      340      28        6.5       11
## [322,]    36    80      121     108        6.5        3
## [323,]    37    47       54      93        6.5        3
## [324,]    38    24      217      74        6.5       22
## [325,]    50    46      219      60        6.5       16
## [326,]    89    17       67       9        6.5        3
## [327,]    93    46       11      21        6.5        3
## [328,]    96    33      271     100        6.5       19
## [329,]   116   113      186     155        6.5        3
## [330,]   135    46       35      55        6.5        3
## [331,]   149    72      198     123        6.5        3
## [332,]   176    65      382     103        6.5        3
## [333,]   200   107      343      93        6.5        3
## [334,]   235    53      282     119        6.5        3
## [335,]   257    46      187      40        6.5       12
## [336,]   275    47      188     120        6.5       19
## [337,]   289    47      275      98        6.5        3
## [338,]   290     8       97     104        6.5        3
## [339,]   305    47      196      91        6.5       30
## [340,]   307    46      193      95        6.5        3
## [341,]   327    92      245     101        6.5       16
## [342,]   393    82      188     105        6.5        3
## [343,]   471    33      176      83        6.5        3
## [344,]   538    47        2      91        6.5       13
## [345,]   547    80       17      83        6.5        3
## [346,]   566    49      141      17        6.5        3
## [347,]    59    58      226      86        6.6        3
## [348,]    74    78       79     124        6.6        3
## [349,]    83    61      196      94        6.6       19
## [350,]   112    82      120     102        6.6       30
## [351,]   145    80      204     118        6.6       30
## [352,]   212    46       44      79        6.6        3
## [353,]   215    78      386     134        6.6        3
## [354,]   233    46      335     126        6.6        3
## [355,]   287    47      275      98        6.6       19
## [356,]   352    46      201      89        6.6        3
## [357,]   360    46       97      58        6.6        3
## [358,]   396    46      296      83        6.6        3
## [359,]   408    90      124     136        6.6       24
## [360,]   434    46       97      98        6.6        3
## [361,]   435    99      362     114        6.6        3
## [362,]   452    42       46      99        6.6       30
## [363,]   517    99      180     130        6.6        3
## [364,]   570    46      136      32        6.6        3
## [365,]    25    23      190     104        6.7       22
## [366,]    29    47        8     142        6.7       19
## [367,]    53    12        8      92        6.7        3
## [368,]    73    46      288      86        6.7        3
## [369,]    77    24      254     106        6.7       22
## [370,]    78    47      267      95        6.7        3
## [371,]   110    46      189      91        6.7        3
## [372,]   111    46      132      89        6.7        3
## [373,]   152     1       21     117        6.7        3
## [374,]   186    46       67      90        6.7        3
## [375,]   199    47      298     117        6.7        3
## [376,]   206    46      365      80        6.7       37
## [377,]   224    47      122      87        6.7        3
## [378,]   242    33       91     101        6.7       29
## [379,]   261    46      340      19        6.7       22
## [380,]   279    85      124     106        6.7        3
## [381,]   286   110      125      54        6.7        3
## [382,]   291    47      229     111        6.7        3
## [383,]   304    47       36     132        6.7       24
## [384,]   330    47      209      97        6.7       38
## [385,]   332    46      157     106        6.7       30
## [386,]   426    34      177     111        6.7        3
## [387,]   502   103      158     124        6.7        3
## [388,]   546    46      165     116        6.7        3
## [389,]   558    47      327     112        6.7       19
## [390,]     6    47      312     144        6.8        3
## [391,]    10    47      339      76        6.8       30
## [392,]    18    26      146     101        6.8        3
## [393,]    19    46      218      92        6.8       30
## [394,]    20    46      376      19        6.8        3
## [395,]    35    46      270      39        6.8        9
## [396,]    39    82      271     102        6.8        3
## [397,]    65    46      274      89        6.8        3
## [398,]   262    33       56     105        6.8       19
## [399,]    86   107      201     101        6.8        3
## [400,]   125    33       88      70        6.8        3
## [401,]   183    46      370      96        6.8       16
## [402,]   194    46      243      85        6.8        3
## [403,]   197    46      357      39        6.8        3
## [404,]   284    46       15      79        6.8        3
## [405,]   382    46      290      73        6.8        3
## [406,]   391    47      329     114        6.8       19
## [407,]   444    47      385     121        6.8        3
## [408,]   445    11      385      28        6.8        3
## [409,]   489    47      282      95        6.8       21
## [410,]   505    47      287     122        6.8        3
## [411,]   525    46      128      23        6.8       17
## [412,]   544    47      161     107        6.8        3
## [413,]   545    46      153      98        6.8       16
## [414,]    30   107       84     108        6.9       19
## [415,]    40    46      384      92        6.9        3
## [416,]    71    46      350     100        6.9       16
## [417,]    72    46      207      97        6.9        3
## [418,]   109    17       89       7        6.9        3
## [419,]   219    47      118      96        6.9        3
## [420,]   253    46      253     100        6.9       29
## [421,]   280    27       94     132        6.9        3
## [422,]   322    80      382     103        6.9        3
## [423,]   324    59      310     121        6.9        3
## [424,]   329    34      226     114        6.9       19
## [425,]   361    46      316      57        6.9        3
## [426,]   388    46      128      95        6.9        3
## [427,]   411    46      202      83        6.9        3
## [428,]   449    46      158      17        6.9        3
## [429,]   467    80      240     105        6.9        3
## [430,]   469    42      228     131        6.9        3
## [431,]   490    35      260      30        6.9        3
## [432,]   494    34      319     112        6.9        3
## [433,]   160    46      316      86        7.0        3
## [434,]   173    46      377     100        7.0        3
## [435,]   214    11      303      14        7.0        3
## [436,]   248    46      319     109        7.0        3
## [437,]   264    46      288      28        7.0       30
## [438,]   265    46      364      64        7.0       30
## [439,]   276    47       76      94        7.0        3
## [440,]   277    11       76      31        7.0        3
## [441,]   320    46      214      99        7.0        3
## [442,]   335    46      117     108        7.0        3
## [443,]   354    46       22      48        7.0        3
## [444,]   356    46      250      84        7.0        3
## [445,]   357    46      220      70        7.0        3
## [446,]   362    46      353      27        7.0        3
## [447,]   370    14       62      45        7.0        3
## [448,]   376    33      102     117        7.0       21
## [449,]   447    32      294     104        7.0        3
## [450,]   458    27      220     108        7.0        3
## [451,]   500     3      328     121        7.0       20
## [452,]     3    11      145      36        7.1        3
## [453,]    47    13      304      30        7.1        3
## [454,]    48    13       65      47        7.1        3
## [455,]    64    47      191     110        7.1        3
## [456,]    99    46       18      92        7.1        3
## [457,]   118    46      301      80        7.1        3
## [458,]   127    68      328      49        7.1        3
## [459,]   143    46       87      73        7.1       30
## [460,]   147    46      272      40        7.1        3
## [461,]   150    46      354      96        7.1        3
## [462,]   161    42      248     106        7.1        2
## [463,]   188    46       16      97        7.1        3
## [464,]   189    46      337      94        7.1       30
## [465,]   239    46      263      78        7.1        3
## [466,]   246    46      371      81        7.1        3
## [467,]   250    46      239      87        7.1        3
## [468,]   268    75      281      91        7.1        3
## [469,]   298    46      215      91        7.1        3
## [470,]   317    46      330      95        7.1        3
## [471,]   337    47      154     126        7.1        3
## [472,]   348    46       33      31        7.1        3
## [473,]   359    46      287      58        7.1        3
## [474,]   375    46      323      41        7.1        1
## [475,]   456    78      368     138        7.1        3
## [476,]   457    47      149     112        7.1        3
## [477,]   466    46      173     114        7.1        3
## [478,]   530    47      142     125        7.1        3
## [479,]   540    82       42      99        7.1        3
## [480,]    44    46      385      82        7.2        3
## [481,]    57    46      378      98        7.2        3
## [482,]   167    47      363     136        7.2       23
## [483,]   172    46      138      97        7.2        3
## [484,]   227    46      339     107        7.2        3
## [485,]   251    46        2      92        7.2        3
## [486,]   252    46      234      39        7.2        6
## [487,]   270    82      111     133        7.2       19
## [488,]   328    48      115      89        7.2        3
## [489,]   343    47      346     124        7.2        3
## [490,]   394    40      327      99        7.2       30
## [491,]   406    47      238     101        7.2       35
## [492,]   407    42      138      97        7.2       19
## [493,]   432    33      352     124        7.2        3
## [494,]   459    47       31     129        7.2       26
## [495,]   462    46      191     121        7.2       29
## [496,]   476    60      276     140        7.2        3
## [497,]   519    67      342      13        7.2        3
## [498,]   520   111      348     108        7.2        3
## [499,]   584    46       37      11        7.2        3
## [500,]   132    27      335     118        7.3        3
## [501,]   142    42      313     121        7.3        3
## [502,]   153    46      359      24        7.3        3
## [503,]   157    46      169     100        7.3        3
## [504,]   177    46      244     101        7.3        3
## [505,]   213    47      266     105        7.3       30
## [506,]   293    46      184      96        7.3       33
## [507,]   311    13      320      47        7.3        3
## [508,]   313     2      200     121        7.3        8
## [509,]   315    42      358     100        7.3       21
## [510,]   346   107      181     149        7.3       19
## [511,]   355    46      131      64        7.3       11
## [512,]   358    46      127      64        7.3        3
## [513,]   386    46      341     114        7.3        5
## [514,]   401    17      236      15        7.3        3
## [515,]   402    46      321      79        7.3        9
## [516,]   429    46       26      90        7.3       10
## [517,]   439   114      284     132        7.3        3
## [518,]   454    46      347     105        7.3        3
## [519,]   464    34      194      97        7.3        3
## [520,]   504    46      257      83        7.3        3
## [521,]    42    46       47     110        7.4        3
## [522,]   164    46      276      39        7.4        3
## [523,]   263    46      382      40        7.4        3
## [524,]   288    46      150      85        7.4        3
## [525,]   336    46      107      26        7.4        6
## [526,]   397    41      299      87        7.4        3
## [527,]   399    46      336      97        7.4        3
## [528,]   442    46      204     118        7.4        3
## [529,]   473    11      300      23        7.4        3
## [530,]   523    46      178      40        7.4        3
## [531,]   534    46      287      98        7.4        3
## [532,]   537    46      168      80        7.4        3
## [533,]    61    41      293     108        7.5        3
## [534,]    76    46      322      79        7.5       24
## [535,]   101    46      387      74        7.5        3
## [536,]   130    46      329      90        7.5        3
## [537,]   205    46        9     137        7.5        3
## [538,]   229    16       41      71        7.5        3
## [539,]   236    46      338      98        7.5        3
## [540,]   237   109       83      70        7.5        3
## [541,]   363    46      360      99        7.5        3
## [542,]   529    46      369      40        7.5        3
## [543,]    56    46      196     104        7.6        3
## [544,]   274    25      280     149        7.6       19
## [545,]   345    46      375     124        7.6        3
## [546,]   373    46      185     144        7.6        3
## [547,]   430    46      327      85        7.6        3
## [548,]   443    46      175     100        7.6        3
## [549,]   522    46      390      94        7.6        3
## [550,]   527    47       78     125        7.6        3
## [551,]   568    46      197      84        7.6        3
## [552,]   581    47      114     117        7.6       19
## [553,]    49    71      199      15        7.7        3
## [554,]    63   113      324     136        7.7        4
## [555,]    81    46       12      76        7.7        3
## [556,]   114    46      224     108        7.7        3
## [557,]   234    46      285      94        7.7        3
## [558,]   244    41      314      90        7.7        3
## [559,]   369    67      105      72        7.7       30
## [560,]   374    47       71     135        7.7       30
## [561,]   223    17      289      12        7.8        3
## [562,]   472    42      300     209        7.8        3
## [563,]   526    47      325     130        7.8        3
## [564,]    21    46       27      82        7.9        3
## [565,]   222    46       58     120        7.9        3
## [566,]   281    47       96     136        7.9        3
## [567,]   474    46      306     112        7.9        3
## [568,]   420    46       79     105        8.0        3
## [569,]    94    46      161      89        8.1        3
## [570,]   299    46      388      85        8.1        3
## [571,]   368    46       52     106        8.1        3
## [572,]     2    46      348     100        8.2        3
## [573,]   131    46      192     107        8.2        3
## [574,]   249    18      283      97        8.2        3
## [575,]   384    46      223      89        8.2        3
## [576,]   524    46      322     109        8.2       30
## [577,]   115    46      297     114        8.3        3
## [578,]   119    46      333      51        8.3        3
## [579,]    68    41      255      85        8.4        3
## [580,]   428    41       92     125        8.4        3
## [581,]   578    46      351      91        8.4       14
## [582,]   413    75       75     153        8.5        3
## [583,]   146    46      100      89        8.6       29
## [584,]   122    46      345      83        9.0        3
nrow(df)
## [1] 584
ncol(df)
## [1] 6
range(max(df$Runtime)-min(df$Runtime))
## [1] 205 205
range(max(df$IMDB.Score)-min(df$IMDB.Score))
## [1] 6.5 6.5
quantile(df$Runtime,c(0.25, 0.5, 0.75))
## 25% 50% 75% 
##  86  97 108
quantile(df$IMDB.Score,c(0.25, 0.5, 0.75))
##  25%  50%  75% 
## 5.70 6.35 7.00
IQR(df$Runtime)
## [1] 22
IQR(df$IMDB.Score)
## [1] 1.3
head(unclass(df$Runtime))
## [1]  58  81  79  94  90 147
head(unclass(df$IMDB.Score))
## [1] 2.5 2.6 2.6 3.2 3.4 3.5
select(df,Runtime)
##     Runtime
## 1        58
## 2        81
## 3        79
## 4        94
## 5        90
## 6       147
## 7       112
## 8       149
## 9        73
## 10      139
## 11       58
## 12      112
## 13       97
## 14      101
## 15       90
## 16       25
## 17      144
## 18      115
## 19      102
## 20      100
## 21       64
## 22       97
## 23       99
## 24      120
## 25      105
## 26       89
## 27       97
## 28      107
## 29       99
## 30       95
## 31       37
## 32       89
## 33       83
## 34       46
## 35       85
## 36       88
## 37       86
## 38      105
## 39       95
## 40       80
## 41        4
## 42       93
## 43      100
## 44      106
## 45       97
## 46      106
## 47      103
## 48       80
## 49      101
## 50      119
## 51       80
## 52       89
## 53       94
## 54       93
## 55       96
## 56      113
## 57       86
## 58      100
## 59      102
## 60       86
## 61      104
## 62       88
## 63       97
## 64      105
## 65       90
## 66       99
## 67       10
## 68      106
## 69       98
## 70       94
## 71      112
## 72      117
## 73       70
## 74       81
## 75      103
## 76       94
## 77       98
## 78      131
## 79       87
## 80       60
## 81      112
## 82      102
## 83       99
## 84      116
## 85       92
## 86       83
## 87       97
## 88      112
## 89      116
## 90      102
## 91      121
## 92       95
## 93       93
## 94       92
## 95       98
## 96       85
## 97       78
## 98      120
## 99       92
## 100     101
## 101     119
## 102     101
## 103     112
## 104      96
## 105     114
## 106      97
## 107     101
## 108      56
## 109     100
## 110      94
## 111      94
## 112      21
## 113     104
## 114      63
## 115     100
## 116     126
## 117     106
## 118      86
## 119     142
## 120     108
## 121     102
## 122      92
## 123      83
## 124      94
## 125      92
## 126     103
## 127      89
## 128      95
## 129     103
## 130      97
## 131     125
## 132      91
## 133      90
## 134      49
## 135      98
## 136     107
## 137     118
## 138      94
## 139     103
## 140      86
## 141      83
## 142      97
## 143      99
## 144     104
## 145     102
## 146      89
## 147      98
## 148     125
## 149      89
## 150      94
## 151      94
## 152      85
## 153      34
## 154      86
## 155      91
## 156     108
## 157      95
## 158     100
## 159      90
## 160     112
## 161      86
## 162     124
## 163     107
## 164      92
## 165     121
## 166      90
## 167     104
## 168      92
## 169     114
## 170      98
## 171      95
## 172      78
## 173     107
## 174      92
## 175      95
## 176      96
## 177     118
## 178     105
## 179      94
## 180      52
## 181     105
## 182      95
## 183     100
## 184      97
## 185      89
## 186     102
## 187      96
## 188     131
## 189      89
## 190      93
## 191     111
## 192      75
## 193     120
## 194      96
## 195     148
## 196      94
## 197     107
## 198      32
## 199     104
## 200      23
## 201     111
## 202      83
## 203      53
## 204      95
## 205     132
## 206      98
## 207     108
## 208     106
## 209     104
## 210      90
## 211     106
## 212      90
## 213      97
## 214     113
## 215     123
## 216     115
## 217     105
## 218     101
## 219     102
## 220     122
## 221     128
## 222      82
## 223     102
## 224      80
## 225      94
## 226     123
## 227     104
## 228      85
## 229      84
## 230     103
## 231      95
## 232     100
## 233      89
## 234     116
## 235     118
## 236      96
## 237     114
## 238      99
## 239      87
## 240      92
## 241      90
## 242      95
## 243      96
## 244      93
## 245      42
## 246      92
## 247     106
## 248     151
## 249     101
## 250     114
## 251      90
## 252     115
## 253      92
## 254      72
## 255     139
## 256      98
## 257      92
## 258     111
## 259      98
## 260     104
## 261      95
## 262      88
## 263     102
## 264      30
## 265      99
## 266     129
## 267      87
## 268     117
## 269     104
## 270     111
## 271     107
## 272      97
## 273      98
## 274      90
## 275     101
## 276      72
## 277      83
## 278     118
## 279      44
## 280     113
## 281      86
## 282     108
## 283      85
## 284     102
## 285     151
## 286      98
## 287      87
## 288     120
## 289     134
## 290     109
## 291      85
## 292     103
## 293      94
## 294      97
## 295      88
## 296      37
## 297     112
## 298     102
## 299     100
## 300      96
## 301     113
## 302      16
## 303     119
## 304      97
## 305      81
## 306      98
## 307      95
## 308      96
## 309     107
## 310      41
## 311      87
## 312     101
## 313      97
## 314     103
## 315      90
## 316     125
## 317     116
## 318      99
## 319      82
## 320      97
## 321      28
## 322     108
## 323      93
## 324      74
## 325      60
## 326       9
## 327      21
## 328     100
## 329     155
## 330      55
## 331     123
## 332     103
## 333      93
## 334     119
## 335      40
## 336     120
## 337      98
## 338     104
## 339      91
## 340      95
## 341     101
## 342     105
## 343      83
## 344      91
## 345      83
## 346      17
## 347      86
## 348     124
## 349      94
## 350     102
## 351     118
## 352      79
## 353     134
## 354     126
## 355      98
## 356      89
## 357      58
## 358      83
## 359     136
## 360      98
## 361     114
## 362      99
## 363     130
## 364      32
## 365     104
## 366     142
## 367      92
## 368      86
## 369     106
## 370      95
## 371      91
## 372      89
## 373     117
## 374      90
## 375     117
## 376      80
## 377      87
## 378     101
## 379      19
## 380     106
## 381      54
## 382     111
## 383     132
## 384      97
## 385     106
## 386     111
## 387     124
## 388     116
## 389     112
## 390     144
## 391      76
## 392     101
## 393      92
## 394      19
## 395      39
## 396     102
## 397      89
## 398     105
## 399     101
## 400      70
## 401      96
## 402      85
## 403      39
## 404      79
## 405      73
## 406     114
## 407     121
## 408      28
## 409      95
## 410     122
## 411      23
## 412     107
## 413      98
## 414     108
## 415      92
## 416     100
## 417      97
## 418       7
## 419      96
## 420     100
## 421     132
## 422     103
## 423     121
## 424     114
## 425      57
## 426      95
## 427      83
## 428      17
## 429     105
## 430     131
## 431      30
## 432     112
## 433      86
## 434     100
## 435      14
## 436     109
## 437      28
## 438      64
## 439      94
## 440      31
## 441      99
## 442     108
## 443      48
## 444      84
## 445      70
## 446      27
## 447      45
## 448     117
## 449     104
## 450     108
## 451     121
## 452      36
## 453      30
## 454      47
## 455     110
## 456      92
## 457      80
## 458      49
## 459      73
## 460      40
## 461      96
## 462     106
## 463      97
## 464      94
## 465      78
## 466      81
## 467      87
## 468      91
## 469      91
## 470      95
## 471     126
## 472      31
## 473      58
## 474      41
## 475     138
## 476     112
## 477     114
## 478     125
## 479      99
## 480      82
## 481      98
## 482     136
## 483      97
## 484     107
## 485      92
## 486      39
## 487     133
## 488      89
## 489     124
## 490      99
## 491     101
## 492      97
## 493     124
## 494     129
## 495     121
## 496     140
## 497      13
## 498     108
## 499      11
## 500     118
## 501     121
## 502      24
## 503     100
## 504     101
## 505     105
## 506      96
## 507      47
## 508     121
## 509     100
## 510     149
## 511      64
## 512      64
## 513     114
## 514      15
## 515      79
## 516      90
## 517     132
## 518     105
## 519      97
## 520      83
## 521     110
## 522      39
## 523      40
## 524      85
## 525      26
## 526      87
## 527      97
## 528     118
## 529      23
## 530      40
## 531      98
## 532      80
## 533     108
## 534      79
## 535      74
## 536      90
## 537     137
## 538      71
## 539      98
## 540      70
## 541      99
## 542      40
## 543     104
## 544     149
## 545     124
## 546     144
## 547      85
## 548     100
## 549      94
## 550     125
## 551      84
## 552     117
## 553      15
## 554     136
## 555      76
## 556     108
## 557      94
## 558      90
## 559      72
## 560     135
## 561      12
## 562     209
## 563     130
## 564      82
## 565     120
## 566     136
## 567     112
## 568     105
## 569      89
## 570      85
## 571     106
## 572     100
## 573     107
## 574      97
## 575      89
## 576     109
## 577     114
## 578      51
## 579      85
## 580     125
## 581      91
## 582     153
## 583      89
## 584      83
select(df,IMDB.Score)
##     IMDB.Score
## 1          2.5
## 2          2.6
## 3          2.6
## 4          3.2
## 5          3.4
## 6          3.5
## 7          3.7
## 8          3.7
## 9          3.9
## 10         4.1
## 11         4.1
## 12         4.1
## 13         4.1
## 14         4.2
## 15         4.2
## 16         4.3
## 17         4.3
## 18         4.3
## 19         4.3
## 20         4.4
## 21         4.4
## 22         4.4
## 23         4.4
## 24         4.4
## 25         4.4
## 26         4.5
## 27         4.5
## 28         4.5
## 29         4.5
## 30         4.6
## 31         4.6
## 32         4.6
## 33         4.6
## 34         4.6
## 35         4.6
## 36         4.6
## 37         4.6
## 38         4.7
## 39         4.7
## 40         4.7
## 41         4.7
## 42         4.7
## 43         4.7
## 44         4.8
## 45         4.8
## 46         4.8
## 47         4.8
## 48         4.8
## 49         4.8
## 50         4.8
## 51         4.9
## 52         4.9
## 53         4.9
## 54         4.9
## 55         5.0
## 56         5.0
## 57         5.0
## 58         5.0
## 59         5.0
## 60         5.1
## 61         5.1
## 62         5.1
## 63         5.1
## 64         5.1
## 65         5.1
## 66         5.2
## 67         5.2
## 68         5.2
## 69         5.2
## 70         5.2
## 71         5.2
## 72         5.2
## 73         5.2
## 74         5.2
## 75         5.2
## 76         5.2
## 77         5.2
## 78         5.2
## 79         5.2
## 80         5.2
## 81         5.2
## 82         5.2
## 83         5.2
## 84         5.2
## 85         5.3
## 86         5.3
## 87         5.3
## 88         5.3
## 89         5.3
## 90         5.3
## 91         5.3
## 92         5.3
## 93         5.3
## 94         5.3
## 95         5.4
## 96         5.4
## 97         5.4
## 98         5.4
## 99         5.4
## 100        5.4
## 101        5.4
## 102        5.4
## 103        5.4
## 104        5.4
## 105        5.4
## 106        5.4
## 107        5.4
## 108        5.5
## 109        5.5
## 110        5.5
## 111        5.5
## 112        5.5
## 113        5.5
## 114        5.5
## 115        5.5
## 116        5.5
## 117        5.5
## 118        5.5
## 119        5.5
## 120        5.5
## 121        5.5
## 122        5.5
## 123        5.5
## 124        5.5
## 125        5.5
## 126        5.5
## 127        5.6
## 128        5.6
## 129        5.6
## 130        5.6
## 131        5.6
## 132        5.6
## 133        5.6
## 134        5.6
## 135        5.6
## 136        5.6
## 137        5.6
## 138        5.6
## 139        5.6
## 140        5.6
## 141        5.6
## 142        5.7
## 143        5.7
## 144        5.7
## 145        5.7
## 146        5.7
## 147        5.7
## 148        5.7
## 149        5.7
## 150        5.7
## 151        5.7
## 152        5.7
## 153        5.7
## 154        5.7
## 155        5.7
## 156        5.7
## 157        5.7
## 158        5.7
## 159        5.7
## 160        5.7
## 161        5.7
## 162        5.8
## 163        5.8
## 164        5.8
## 165        5.8
## 166        5.8
## 167        5.8
## 168        5.8
## 169        5.8
## 170        5.8
## 171        5.8
## 172        5.8
## 173        5.8
## 174        5.8
## 175        5.8
## 176        5.8
## 177        5.8
## 178        5.8
## 179        5.8
## 180        5.8
## 181        5.8
## 182        5.8
## 183        5.8
## 184        5.8
## 185        5.8
## 186        5.8
## 187        5.8
## 188        5.8
## 189        5.8
## 190        5.8
## 191        5.8
## 192        5.9
## 193        5.9
## 194        5.9
## 195        5.9
## 196        5.9
## 197        5.9
## 198        5.9
## 199        5.9
## 200        5.9
## 201        5.9
## 202        5.9
## 203        5.9
## 204        5.9
## 205        5.9
## 206        5.9
## 207        5.9
## 208        6.0
## 209        6.0
## 210        6.0
## 211        6.0
## 212        6.0
## 213        6.0
## 214        6.0
## 215        6.0
## 216        6.0
## 217        6.0
## 218        6.0
## 219        6.0
## 220        6.0
## 221        6.1
## 222        6.1
## 223        6.1
## 224        6.1
## 225        6.1
## 226        6.1
## 227        6.1
## 228        6.1
## 229        6.1
## 230        6.1
## 231        6.1
## 232        6.1
## 233        6.1
## 234        6.1
## 235        6.1
## 236        6.1
## 237        6.1
## 238        6.1
## 239        6.1
## 240        6.1
## 241        6.1
## 242        6.1
## 243        6.1
## 244        6.1
## 245        6.2
## 246        6.2
## 247        6.2
## 248        6.2
## 249        6.2
## 250        6.2
## 251        6.2
## 252        6.2
## 253        6.2
## 254        6.2
## 255        6.2
## 256        6.2
## 257        6.2
## 258        6.2
## 259        6.2
## 260        6.2
## 261        6.2
## 262        6.2
## 263        6.3
## 264        6.3
## 265        6.3
## 266        6.3
## 267        6.3
## 268        6.3
## 269        6.3
## 270        6.3
## 271        6.3
## 272        6.3
## 273        6.3
## 274        6.3
## 275        6.3
## 276        6.3
## 277        6.3
## 278        6.3
## 279        6.3
## 280        6.3
## 281        6.3
## 282        6.3
## 283        6.3
## 284        6.3
## 285        6.3
## 286        6.3
## 287        6.3
## 288        6.3
## 289        6.3
## 290        6.3
## 291        6.3
## 292        6.3
## 293        6.4
## 294        6.4
## 295        6.4
## 296        6.4
## 297        6.4
## 298        6.4
## 299        6.4
## 300        6.4
## 301        6.4
## 302        6.4
## 303        6.4
## 304        6.4
## 305        6.4
## 306        6.4
## 307        6.4
## 308        6.4
## 309        6.4
## 310        6.4
## 311        6.4
## 312        6.4
## 313        6.4
## 314        6.4
## 315        6.4
## 316        6.4
## 317        6.4
## 318        6.4
## 319        6.4
## 320        6.4
## 321        6.5
## 322        6.5
## 323        6.5
## 324        6.5
## 325        6.5
## 326        6.5
## 327        6.5
## 328        6.5
## 329        6.5
## 330        6.5
## 331        6.5
## 332        6.5
## 333        6.5
## 334        6.5
## 335        6.5
## 336        6.5
## 337        6.5
## 338        6.5
## 339        6.5
## 340        6.5
## 341        6.5
## 342        6.5
## 343        6.5
## 344        6.5
## 345        6.5
## 346        6.5
## 347        6.6
## 348        6.6
## 349        6.6
## 350        6.6
## 351        6.6
## 352        6.6
## 353        6.6
## 354        6.6
## 355        6.6
## 356        6.6
## 357        6.6
## 358        6.6
## 359        6.6
## 360        6.6
## 361        6.6
## 362        6.6
## 363        6.6
## 364        6.6
## 365        6.7
## 366        6.7
## 367        6.7
## 368        6.7
## 369        6.7
## 370        6.7
## 371        6.7
## 372        6.7
## 373        6.7
## 374        6.7
## 375        6.7
## 376        6.7
## 377        6.7
## 378        6.7
## 379        6.7
## 380        6.7
## 381        6.7
## 382        6.7
## 383        6.7
## 384        6.7
## 385        6.7
## 386        6.7
## 387        6.7
## 388        6.7
## 389        6.7
## 390        6.8
## 391        6.8
## 392        6.8
## 393        6.8
## 394        6.8
## 395        6.8
## 396        6.8
## 397        6.8
## 398        6.8
## 399        6.8
## 400        6.8
## 401        6.8
## 402        6.8
## 403        6.8
## 404        6.8
## 405        6.8
## 406        6.8
## 407        6.8
## 408        6.8
## 409        6.8
## 410        6.8
## 411        6.8
## 412        6.8
## 413        6.8
## 414        6.9
## 415        6.9
## 416        6.9
## 417        6.9
## 418        6.9
## 419        6.9
## 420        6.9
## 421        6.9
## 422        6.9
## 423        6.9
## 424        6.9
## 425        6.9
## 426        6.9
## 427        6.9
## 428        6.9
## 429        6.9
## 430        6.9
## 431        6.9
## 432        6.9
## 433        7.0
## 434        7.0
## 435        7.0
## 436        7.0
## 437        7.0
## 438        7.0
## 439        7.0
## 440        7.0
## 441        7.0
## 442        7.0
## 443        7.0
## 444        7.0
## 445        7.0
## 446        7.0
## 447        7.0
## 448        7.0
## 449        7.0
## 450        7.0
## 451        7.0
## 452        7.1
## 453        7.1
## 454        7.1
## 455        7.1
## 456        7.1
## 457        7.1
## 458        7.1
## 459        7.1
## 460        7.1
## 461        7.1
## 462        7.1
## 463        7.1
## 464        7.1
## 465        7.1
## 466        7.1
## 467        7.1
## 468        7.1
## 469        7.1
## 470        7.1
## 471        7.1
## 472        7.1
## 473        7.1
## 474        7.1
## 475        7.1
## 476        7.1
## 477        7.1
## 478        7.1
## 479        7.1
## 480        7.2
## 481        7.2
## 482        7.2
## 483        7.2
## 484        7.2
## 485        7.2
## 486        7.2
## 487        7.2
## 488        7.2
## 489        7.2
## 490        7.2
## 491        7.2
## 492        7.2
## 493        7.2
## 494        7.2
## 495        7.2
## 496        7.2
## 497        7.2
## 498        7.2
## 499        7.2
## 500        7.3
## 501        7.3
## 502        7.3
## 503        7.3
## 504        7.3
## 505        7.3
## 506        7.3
## 507        7.3
## 508        7.3
## 509        7.3
## 510        7.3
## 511        7.3
## 512        7.3
## 513        7.3
## 514        7.3
## 515        7.3
## 516        7.3
## 517        7.3
## 518        7.3
## 519        7.3
## 520        7.3
## 521        7.4
## 522        7.4
## 523        7.4
## 524        7.4
## 525        7.4
## 526        7.4
## 527        7.4
## 528        7.4
## 529        7.4
## 530        7.4
## 531        7.4
## 532        7.4
## 533        7.5
## 534        7.5
## 535        7.5
## 536        7.5
## 537        7.5
## 538        7.5
## 539        7.5
## 540        7.5
## 541        7.5
## 542        7.5
## 543        7.6
## 544        7.6
## 545        7.6
## 546        7.6
## 547        7.6
## 548        7.6
## 549        7.6
## 550        7.6
## 551        7.6
## 552        7.6
## 553        7.7
## 554        7.7
## 555        7.7
## 556        7.7
## 557        7.7
## 558        7.7
## 559        7.7
## 560        7.7
## 561        7.8
## 562        7.8
## 563        7.8
## 564        7.9
## 565        7.9
## 566        7.9
## 567        7.9
## 568        8.0
## 569        8.1
## 570        8.1
## 571        8.1
## 572        8.2
## 573        8.2
## 574        8.2
## 575        8.2
## 576        8.2
## 577        8.3
## 578        8.3
## 579        8.4
## 580        8.4
## 581        8.4
## 582        8.5
## 583        8.6
## 584        9.0
select(df, 1)
##                                                                                                          Title
## 1                                                                                              Enter the Anime
## 2                                                                                                  Dark Forces
## 3                                                                                                      The App
## 4                                                                                               The Open House
## 5                                                                                                  Kaali Khuhi
## 6                                                                                                        Drive
## 7                                                                                            Leyla Everlasting
## 8                                                                              The Last Days of American Crime
## 9                                                                                                      Paradox
## 10                                                                                          Sardar Ka Grandson
## 11                                                                                        Searching for Sheela
## 12                                                                                                    The Call
## 13                                                                                                     Whipped
## 14                                                                                          All Because of You
## 15                                                                                                       Mercy
## 16                                                                                              After the Raid
## 17                                                                                               Ghost Stories
## 18                                                                                    The Last Thing He Wanted
## 19                                                                                   What Happened to Mr. Cha?
## 20                                                                                                  Death Note
## 21                                                                           Hello Privilege. It's Me, Chelsea
## 22                                                                                            Secret Obsession
## 23                                                                                                  Sextuplets
## 24                                                                                       The Girl on the Train
## 25                                                                                               Thunder Force
## 26                                                                                                Fatal Affair
## 27                                                                                                Just Say Yes
## 28                                                                                            Seriously Single
## 29                                                                       The Misadventures of Hedi and Cokeman
## 30                                                                                            5 Star Christmas
## 31                                                                                                 After Maria
## 32                                                               I Am the Pretty Thing That Lives in the House
## 33                                                                                                 Paris Is Us
## 34                                                            Porta dos Fundos: The First Temptation of Christ
## 35                                                                                                 Rattlesnake
## 36                                                                                                 The Players
## 37                                                                                                  We Are One
## 38                                                                                               Finding Agnes
## 39                                                                                                          IO
## 40                                                                                                  Sentinelle
## 41                                                                                                 Sol Levante
## 42                                                                                                 The Binding
## 43                                                                                            We Can Be Heroes
## 44                                                                                         Christmas Crossfire
## 45                                                                                                  Coin Heist
## 46                                                                                          Mrs. Serial Killer
## 47                                                                          Nobody Sleeps in the Woods Tonight
## 48                                                                                                 Take the 10
## 49                                                                                              The Main Event
## 50                                                                                            The Ridiculous 6
## 51                                                                                             Earth and Blood
## 52                                                                                                    Fearless
## 53                                                                                                Holiday Rush
## 54                                                                                         The Day of the Lord
## 55                                                                                               Airplane Mode
## 56                                                                                                 How It Ends
## 57                                                                                  Love Like the Falling Rain
## 58                                                                                                     Rebirth
## 59                                                                                                Squared Love
## 60                                                                                                     Cadaver
## 61                                                                                                    Clinical
## 62                                                                                             Coffee & Kareem
## 63                                                                                                        Dude
## 64                                                                                                  Geez & Ann
## 65                                                                                      The Larva Island Movie
## 66                                                                                                #REALITYHIGH
## 67                                                           American Factory: A Conversation with the Obamas 
## 68                                                                                                  Desperados
## 69                                                                      Dolly Parton's Christmas on the Square
## 70                                                                                          Father of the Year
## 71                                                                                                   Firebrand
## 72                                                                                                   Ghost Lab
## 73                                                                                            Girlfriend's Day
## 74                                                                           Handsome: A Netflix Mystery Movie
## 75                                                                                             Hubie Halloween
## 76                                                                                                       Ibiza
## 77                                                                                            Rim of the World
## 78                                                                                                Sandy Wexler
## 79                                                                                           See You Yesterday
## 80                                                                         Still Laugh-In: The Stars Celebrate
## 81                                                                                         Strip Down, Rise Up
## 82                                                                                                   Tall Girl
## 83                                                                                                   The Beast
## 84                                                                                                 The Week Of
## 85                                                                       A Christmas Prince: The Royal Wedding
## 86                                                                                              Back to School
## 87                                                                                              Dangerous Lies
## 88                                                                              Gunjan Saxena: The Kargil Girl
## 89                                                                                                   Intuition
## 90                                                                    The Most Assassinated Woman in the World
## 91                                                                                         Things Heard & Seen
## 92                                                                                            To Each, Her Own
## 93                                                                    Who Would You Take to a Deserted Island?
## 94                                                                                                        XOXO
## 95                                                                     A Babysitter's Guide to Monster Hunting
## 96                                                                          A Christmas Prince: The Royal Baby
## 97                                                                                          Despite Everything
## 98                                                                       Dolly Kitty and Those Twinkling Stars
## 99                                                                                    Freaks: You're One of Us
## 100                                                                                            Game Over, Man!
## 101                                                                                                     Guilty
## 102                                                                                          In the Tall Grass
## 103                                                                                              Madame Claude
## 104                                                                                                      Naked
## 105                                                                                           Outside the Wire
## 106                                                                        The Princess Switch: Switched Again
## 107                                                                                     Under the Riccione Sun
## 108                                                                                    A Very Murray Christmas
## 109                                                                                               Been So Long
## 110                                                                                                  Dead Kids
## 111                                                                                              Get the Grift
## 112                                                                                       Ghosts of Sugar Land
## 113                                                                                               House Arrest
## 114                                                                        Kevin Hart's Guide to Black History
## 115                                                                                        Love Wedding Repeat
## 116                                                                                                       Mute
## 117                                                                                                    Òlòt?ré
## 118                                                                                                    Red Dot
## 119                                                                                                Ride or Die
## 120                                                                                               Step Sisters
## 121                                                                                    The Cloverfield Paradox
## 122                                                                                The Knight Before Christmas
## 123                                                                      The Legacy of a Whitetail Deer Hunter
## 124                                                                                                The Package
## 125                                                                                              Unicorn Store
## 126                                                                                               Wine Country
## 127                                                                                                Bomb Scared
## 128                                                                                              Brahman Naman
## 129                                                                                                 Double Dad
## 130                                                                                           Falling Inn Love
## 131                                                                                              Hold the Dark
## 132                                                                                           Love, Guaranteed
## 133                                                                                        One-Way to Tomorrow
## 134                                                                            Sarah Cooper: Everything's Fine
## 135                                                                                             The Last Laugh
## 136                                                                                          The Last Paradiso
## 137                                                                                           The Midnight Sky
## 138                                                                                              The Paramedic
## 139                                                                                              The Sleepover
## 140                                                                                     Vampires vs. the Bronx
## 141                                                                                       Why Did You Kill Me?
## 142                                                                                                A Week Away
## 143                                                                                           Caught by a Wave
## 144                                                                                      Christmas Inheritance
## 145                                                                                                 Dad Wanted
## 146                                                                                        El Camino Christmas
## 147                                                                                                        Eli
## 148                                                                                           Ginny Weds Sunny
## 149                                                                                                   Good Sam
## 150                                                                                                  Lionheart
## 151                                                                                                Little Evil
## 152                                                                                                   One Take
## 153                                                                                           Out of Many, One
## 154                                                                                                Point Blank
## 155                                                                                                 Prime Time
## 156                                                                                                The Do-Over
## 157                                                                                       The Holiday Calendar
## 158                                                                                    The Woman in the Window
## 159                                                                                            The Wrong Missy
## 160                                                                                             Velvet Buzzsaw
## 161                                                                                                    Yes Day
## 162                                                                                                  15 August
## 163                                                                                     A California Christmas
## 164                                                                                         A Christmas Prince
## 165                                                                                        All Day and a Night
## 166                                                                                               American Son
## 167                                                                                                      Barry
## 168                                                                                                  Candy Jar
## 169                                                                                    Choked: Paisa Bolta Hai
## 170                                                                                               Class of '83
## 171                                                                                                 Extinction
## 172                                                                                          Happy Anniversary
## 173                                                                                             I Am All Girls
## 174                                                                                                Let It Snow
## 175                                                                                                    Mascots
## 176                                                                                   Operation Christmas Drop
## 177                                                                                               Rajma Chawal
## 178                                                                                               Rich in Love
## 179                                                                                                Rising High
## 180                                                                                                Rodney King
## 181                                                                                  Sierra Burgess Is a Loser
## 182                                                                                               Small Crimes
## 183                                                                                     Special Correspondents
## 184                                                                                                        TAU
## 185                                                                                            The After Party
## 186                                                                               The Babysitter: Killer Queen
## 187                                                                                           The Claus Family
## 188                                                                                        The Kissing Booth 2
## 189                                                                                           The Perfect Date
## 190                                                                                             What We Wanted
## 191                                                                                            You've Got This
## 192                                                                                                 6 Balloons
## 193                                                                                          A Fall from Grace
## 194                                                                                                    Amateur
## 195                                                                                           Army of the Dead
## 196                                                                                                        Cam
## 197                                                                                            Earthquake Bird
## 198                                                             Frankenstein's Monster's Monster, Frankenstein
## 199                                                                                                 Horse Girl
## 200                                                         Notes from Dunblane: Lesson from a School Shooting
## 201                                                                                                      Maska
## 202                                                                                                The Decline
## 203                                                                               The Minimalists: Less Is Now
## 204                                                                                             The Polka King
## 205                                                                                                   The Prom
## 206                                                                  True Memoirs of an International Assassin
## 207                                                                                                     Ultras
## 208                                                                                                Come Sunday
## 209                                                                                       Forgive Us Our Debts
## 210                                                                                                       iBoy
## 211                                                                                                 Lovefucked
## 212                                                                                                    Juanita
## 213                                                                                             Murder Mystery
## 214                                                                                              Project Power
## 215                                                                                                    Rebecca
## 216                                                                         The Christmas Chronicles: Part Two
## 217                                                                                          The Kissing Booth
## 218                                                                                        The Princess Switch
## 219                                                                     To All the Boys: P.S. I Still Love You
## 220                                                                                                War Machine
## 221                                                                                              6 Underground
## 222                                                                               Between Two Ferns: The Movie
## 223                                                                                              Burning Sands
## 224                                                                                           Casting JonBenet
## 225                                                                                 Deidra & Laney Rob a Train
## 226                                                                                             Finding 'Ohana
## 227                                                                                                   Holidate
## 228                                                                                        Holiday in the Wild
## 229                                                                                           Hot Girls Wanted
## 230                                                                                                Like Father
## 231                                                                                                 Lost Girls
## 232                                                                                                  Otherhood
## 233                                                                                      Pee-wee's Big Holiday
## 234                                                                                                 Rogue City
## 235                                                                                                     Sergio
## 236                                                                                                Stuck Apart
## 237                                                                                       Tersanjung the Movie
## 238                                                                                                 The Killer
## 239                                                                                              The Lovebirds
## 240                                                                            The Most Hated Woman in America
## 241                                                                                             The Perfection
## 242                                                                              Tribhanga – Tedhi Medhi Crazy
## 243                                                                                            Unknown Origins
## 244                                                                                                    Work It
## 245                                                                                                 Alien Xmas
## 246                                                                                Baggio: The Divine Ponytail
## 247                                                                                                 Below Zero
## 248                                                                                                   Citation
## 249                                                                                     Crazy Awesome Teachers
## 250                                                                              Have You Ever Seen Fireflies?
## 251                                                                                           High Flying Bird
## 252                                                                                  In the Shadow of the Moon
## 253                                                                                                Lost Bullet
## 254                                                                         Octonauts & the Caves of Sac Actun
## 255                                                                                      Offering to the Storm
## 256                                                                                            Roxanne Roxanne
## 257                                                                                              Someone Great
## 258                                                                                       Spenser Confidential
## 259                                                                                  The Land of Steady Habits
## 260                                                                                          The Rachel Divide
## 261                                                                                                    Voyuer 
## 262                                                                                                 Win It All
## 263                                                                                                       1922
## 264                                                                                     A Tale of Two Kitchens
## 265                                                                                           Alex Strangelove
## 266                                                                                                    Apostle
## 267                                                                                                      Benji
## 268                                                                                                     Bright
## 269                                                                                                      Cargo
## 270                                                                                            Concrete Cowboy
## 271                                                                                              Feel the Beat
## 272                                                                                               Get the Goat
## 273                                                                                       I Am Not an Easy Man
## 274                                                                                                June & Kopi
## 275                                                                                              Music Teacher
## 276                                                                                       Nail Bomber: Manhunt
## 277                                                                                           Notes for My Son
## 278                                                                                                      Polar
## 279                                                                        Porta dos Fundos: The Last Hangover
## 280                                                                                                Sand Castle
## 281                                                                                               Shimmer Lake
## 282                                                                                                   Spectral
## 283                                                                                             The Babysitter
## 284                                                                                              The Discovery
## 285                                                                                         The Forest of Love
## 286                                                                                             The Laundromat
## 287                                                                               The Legend of Cocaine Island
## 288                                                                                               The Outsider
## 289                                                                                               Time to Hunt
## 290                                                                        To All the Boys: Always and Forever
## 291                                                                           Travis Scott: Look Mom I Can Fly
## 292                                                                                                   Uncorked
## 293                                                                                      Anelka: Misunderstood
## 294                                                                       Ariana Grande: Excuse Me, I Love You
## 295                                                                                                        ARQ
## 296                                                                                                    Birders
## 297                                                                                       Como Caído del Cielo
## 298                                                                                                First Match
## 299                                                                                                  Fractured
## 300                                                                                          Irreplaceable You
## 301                                                                                                 Isi & Ossi
## 302                                                                          John Was Trying to Contact Aliens
## 303                                                                                               Layla Majnun
## 304                                                                   Murder to Mercy: The Cyntoia Brown Story
## 305                                                                                                 My Own Man
## 306                                                                                         Nappily Ever After
## 307                                                                                              Over the Moon
## 308                                                                                                Street Flow
## 309                                                                                              Strong Island
## 310                                                                    Sturgill Simpson Presents: Sound & Fury
## 311                                                                                            Take Your Pills
## 312                                                                                        The Heartbreak Club
## 313                                                                                        The Mars Generation
## 314                                                                                               The Occupant
## 315                                                                                            The Willoughbys
## 316                                                                                            Triple Frontier
## 317                                                                                             Two Catalonias
## 318                                                                                         Walk. Ride. Rodeo.
## 319                                                                                                   Wheelman
## 320                                                                                          When We First Met
## 321                                                                                             A 3 Minute Hug
## 322                                                                                      All the Bright Places
## 323                                                                                           All Together Now
## 324                                                                                  Altered Carbon: Resleeved
## 325                                                                  Antoine Griezmann: The Making of a Legend
## 326                                                                                                    Canvas 
## 327                                                                    Chadwick Boseman: Portrait of an Artist
## 328                                                                                                 Chopsticks
## 329                                                                                                Da 5 Bloods
## 330                                                                          Dolly Parton: A MusiCares Tribute
## 331                                                            Eurovision Song Contest: The Story of Fire Saga
## 332                                                                                              Gerald's Game
## 333                                                                                                  His House
## 334                                                                         Jingle Jangle: A Christmas Journey
## 335                                                                                          Life Overtakes Me
## 336                                                                                               Lust Stories
## 337                                                                                                    Monster
## 338                                                                               Mowgli: Legend of the Jungle
## 339                                                                                      Nobody Knows I'm Here
## 340                                                                     Nobody Speak: Trials of the Free Press
## 341                                                                                                     Oxygen
## 342                                                                                                  Set It Up
## 343                                                                               The Incredible Jessica James
## 344                                                                                                  Tigertail
## 345                                                                                                     Tramps
## 346                                                                                          What Did Jack Do?
## 347                                                                                                   Bad Trip
## 348                                                                                                   Bird Box
## 349                                                                                                    Bulbbul
## 350                                                                                            Crazy About Her
## 351                                                                                            Elisa & Marcela
## 352                                                                                   I'll Sleep When I'm Dead
## 353                                                                              I'm Thinking of Ending Things
## 354                                                                                         It Takes a Lunatic
## 355                                                                                                  Milestone
## 356                                                                                              Recovery Boys
## 357                                                                     ReMastered: Who Killed Jam Master Jay?
## 358                                                                                    Shawn Mendes: In Wonder
## 359                                                                                             Space Sweepers
## 360                                                                                          The American Meme
## 361                                                                                                  The Angel
## 362                                                                                       The Crimes That Bind
## 363                                                                                  The Red Sea Diving Resort
## 364                                                                                What Would Sophia Loren Do?
## 365                                                                                             A Whisker Away
## 366                                                                                            Ajeeb Daastaans
## 367                                                                                     Arlo the Alligator Boy
## 368                                                                               Bikram: Yogi, Guru, Predator
## 369                                                                                                     Blame!
## 370                                                                                               Blue Miracle
## 371                                                                                              CounterPunch 
## 372                                                                    Crack: Cocaine, Corruption & Conspiracy
## 373                                                                                                 Extraction
## 374                                                                                               Giving Voice
## 375                                                                                            Hillbilly Elegy
## 376                                                                         Hope Frozen: A Quest to Live Twice
## 377                                                                                            Imperial Dreams
## 378                                                                                     Just Another Christmas
## 379                                                                                           Little Miss Sumo
## 380                                                                                            Malcolm & Marie
## 381                                                        Michael Bolton's Big, Sexy, Valentine's Day Special
## 382                                                                                                      Moxie
## 383                                                                                          Night in Paradise
## 384                                                                                                Paper Lives
## 385                                                                                   Parchis: The Documentary
## 386                                                                                                   Tallulah
## 387                                                                                              The Old Guard
## 388                                                                           Tony Robbins: I Am Not Your Guru
## 389                                                                                                   Upstarts
## 390                                                                                                    22 July
## 391                                                                                                     7 años
## 392                                                                                A Futile and Stupid Gesture
## 393                                                              A Life of Speed: The Juan Manuel Fangio Story
## 394                                                                                    A Love Song for Latasha
## 395                                                                                           All in My Family
## 396                                                                                         Always Be My Maybe
## 397                                                                                                   Becoming
## 398                                                                                       Long Live Brij Mohan
## 399                                                                                                    Calibre
## 400                                                                                              Death to 2020
## 401                                                                                        GIMS: On the Record
## 402                                                               Have a Good Trip: Adventures in Psychedelics
## 403                                                                                                 Heroin(e) 
## 404                                                                                                 Mercury 13
## 405                                                                                          Saving Capitalism
## 406                                                                                                Serious Men
## 407                                                                                       The Boys in the Band
## 408                                                                   The Boys in the Band: Something Personal
## 409                                                                                             The Life Ahead
## 410                                                                                 The Other Side of the Wind
## 411                                                                                                 The Trader
## 412                                                                                                To the Bone
## 413                                                                                Tony Parker: The Final Shot
## 414                                                                                                   AK vs AK
## 415                                                                                                Amanda Knox
## 416                                                                               Bigflo & Oil: Hip Hop Frenzy
## 417                                                                              Biggie: I Got a Story to Tell
## 418                                                                                           Cops and Robbers
## 419                                                                 I Don't Feel at Home in This World Anymore
## 420                                                                                                  Laerte-se
## 421                                                                                                       Mank
## 422                                                                                         Our Souls at Night
## 423                                                                                                Outlaw King
## 424                                                                                                   Pagglait
## 425                                                                          ReMastered: Who Shot the Sheriff?
## 426                                                                                              Seeing Allred
## 427                                                                                         Spelling the Dream
## 428                                                                                     The Claudia Kishi Club
## 429                                                                                             The Half of It
## 430                                                                                             The Highwaymen
## 431                                      The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 432                                                                  The Meyerowitz Stories (New and Selected)
## 433                                                                        Feminists: What Were They Thinking?
## 434                                                                                        Gaga: Five Foot Two
## 435                                I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 436                                                                                              Kingdom of Us
## 437                                                                                 Lorena, Light-Footed Woman
## 438                                                                      Los Tigres del Norte at Folsom Prison
## 439                                                                                   Ma Rainey's Black Bottom
## 440                                                       Ma Rainey's Black Bottom: A Legacy Brought to Screen
## 441                                                    Operation Varsity Blues: The College Admissions Scandal
## 442                                                                                                       Pele
## 443                                                                        ReMastered: Devil at the Crossroads
## 444                                                                               ReMastered: The Lion's Share
## 445                                                                    ReMastered: The Miami Showband Massacre
## 446                                                                                                  Resurface
## 447                                                                          Rocko's Modern Life: Static Cling
## 448                                                                                                Rose Island
## 449                                                                                   The Christmas Chronicles
## 450                                                                                                   The Dirt
## 451                                                                                     The Night Comes for Us
## 452                                                     13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 453                                                                                         Angela's Christmas
## 454                                                                                    Angela's Christmas Wish
## 455                                                                                                      Beats
## 456                                                                                            Circus of Books
## 457                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 458                                                                                    Derren Brown: Sacrifice
## 459                                                                                    El Pepe: A Supreme Life
## 460                                                                                                   End Game
## 461                                                                                                     Evelyn
## 462                                                                                                      Ferry
## 463                                                                                           Grass Is Greener
## 464                                                                        Guillermo Vilas: Settling the Score
## 465                                                                            Joshua: Teenager vs. Superpower
## 466                                                                        Keith Richards: Under the Influence
## 467                                                                                       Knock Down the House
## 468                                                                      Loudon Wainwright III: Surviving Twin
## 469                                                                                  My Beautiful Broken Brain
## 470                                                                                                  One of Us
## 471                                                                                          Pieces of a Woman
## 472                                                                                       Ram Dass, Going Home
## 473                                                                 ReMastered: Tricky Dick & the Man in Black
## 474                                                                                          Rooting for Roona
## 475                                                                                     The Devil All the Time
## 476                                                                                                    The Dig
## 477                                                                                             The Great Hack
## 478                                                                                            The White Tiger
## 479                                                                          To All the Boys I've Loved Before
## 480                                                                      American Murder: The Family Next Door
## 481                                                                                             Audrie & Daisy
## 482                                                                                First They Killed My Father
## 483                                                               Fyre: The Greatest Party That Never Happened
## 484                                                                                           Into the Inferno
## 485                                                                                               LA Originals
## 486                                                                                               Ladies First
## 487                                                                                       Love per Square Foot
## 488                                                                                                  Paddleton
## 489                                                                                               Private Life
## 490                                                                                                  Seventeen
## 491                                                                                                  Sometimes
## 492                                                                                                       Soni
## 493                                                                                    The 40-Year-Old Version
## 494                                                                                               The Disciple
## 495                                                                                      The Edge of Democracy
## 496                                                                                                   The King
## 497                                                                The Road to El Camino: A Breaking Bad Movie
## 498                                                                                    The Siege of Jadotville
## 499                                                                                                      Zion 
## 500                                                                                        Dolemite Is My Name
## 501                                                                            El Camino: A Breaking Bad Movie
## 502                                                                                                   Extremis
## 503                                                                                         Father Soldier Son
## 504                                                                                         Get Me Roger Stone
## 505                                                                                         I'm No Longer Here
## 506                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 507                                                                         Octonauts & the Great Barrier Reef
## 508                                                                                                       Okja
## 509                                                                                                 On My Skin
## 510                                                                                             Raat Akeli Hai
## 511                                                                        ReMastered: Massacre at the Stadium
## 512                                                                  ReMastered: The Two Killings of Sam Cooke
## 513                                                                                Secrets of the Saqqara Tomb
## 514                                                                                    Sitara: Let Girls Dream
## 515                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 516                                                                                            Team Foxcatcher
## 517                                                                               The Ballad of Buster Scruggs
## 518                                                                    The Death and Life of Marsha P. Johnson
## 519                                                                                 The Fundamentals of Caring
## 520                                                           The Other One: The Long Strange Trip of Bob Weir
## 521                                                                                           American Factory
## 522                                                                                           Fire in Paradise
## 523                                                                                                  Long Shot
## 524                                                                                             Miss Americana
## 525                                                                                   Period. End of Sentence.
## 526                                                                              Shawn Mendes: Live in Concert
## 527                                                                                                   Shirkers
## 528                                                                                        The Black Godfather
## 529                                                                              The Irishman: In Conversation
## 530                                                                                           The Speed Cubers
## 531                                                                              They'll Love Me When I'm Dead
## 532                                                                                                        Tig
## 533                                                                Barbra: The Music, The Mem'ries, The Magic!
## 534                                                                                Blackpink: Light Up the Sky
## 535                                                                                                City of Joy
## 536                                                                                       Dick Johnson Is Dead
## 537                                                                             Homecoming: A Film by Beyonce 
## 538                                                                             Invader Zim: Enter the Florpus
## 539                                                                      Joan Didion: The Center Will Not Hold
## 540                                                                        John Mulaney & the Sack Lunch Bunch
## 541                                                                                              Reversing Roe
## 542                                                                                          The White Helmets
## 543                                                                                                  Athlete A
## 544                                                                                                       Ludo
## 545                                                                                                     Quincy
## 546                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 547                                                                                           Tell Me Who I Am
## 548                                                                                          The Bleeding Edge
## 549                                                                                         The Social Dilemma
## 550                                                                                              The Two Popes
## 551                                                                                What Happened, Miss Simone?
## 552                                                                                                 Yeh Ballet
## 553                                                                                                      Anima
## 554                                                                                        Beasts of No Nation
## 555                                                                           Brene Brown: The Call to Courage
## 556                                                                         Crip Camp: A Disability Revolution
## 557 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 558                                                                     Justin Timberlake + The Tennessee Kids
## 559                                                                                               Road to Roma
## 560                                                                                                       Roma
## 561                                                                             If Anything Happens I Love You
## 562                                                                                               The Irishman
## 563                                                                                 The Trial of the Chicago 7
## 564                                                                                              A Secret Love
## 565                                                                                                     Icarus
## 566                                                                                             Marriage Story
## 567                                                                                             The Ivory Game
## 568                                                               Struggle: The Life and Lost Art of Szukaiski
## 569                                                                                             Chasing Coral 
## 570                                                                                         My Octopus Teacher
## 571                                                                                             Rising Phoenix
## 572                                                                                                       13th
## 573                                                                          Disclosure: Trans Lives on Screen
## 574                                                                                                      Klaus
## 575                                                                                                 Seaspiracy
## 576                                                                      The Three Deaths of Marisela Escobedo
## 577                                                                                    Cuba and the Cameraman 
## 578                                                                                     Dancing with the Birds
## 579                                                                 Ben Platt: Live from Radio City Music Hall
## 580                                                                      Taylor Swift: Reputation Stadium Tour
## 581                                                                Winter on Fire: Ukraine's Fight for Freedom
## 582                                                                                    Springsteen on Broadway
## 583                                                                  Emicida: AmarElo - It's All For Yesterday
## 584                                                                   David Attenborough: A Life on Our Planet
select(df, 5)
##     IMDB.Score
## 1          2.5
## 2          2.6
## 3          2.6
## 4          3.2
## 5          3.4
## 6          3.5
## 7          3.7
## 8          3.7
## 9          3.9
## 10         4.1
## 11         4.1
## 12         4.1
## 13         4.1
## 14         4.2
## 15         4.2
## 16         4.3
## 17         4.3
## 18         4.3
## 19         4.3
## 20         4.4
## 21         4.4
## 22         4.4
## 23         4.4
## 24         4.4
## 25         4.4
## 26         4.5
## 27         4.5
## 28         4.5
## 29         4.5
## 30         4.6
## 31         4.6
## 32         4.6
## 33         4.6
## 34         4.6
## 35         4.6
## 36         4.6
## 37         4.6
## 38         4.7
## 39         4.7
## 40         4.7
## 41         4.7
## 42         4.7
## 43         4.7
## 44         4.8
## 45         4.8
## 46         4.8
## 47         4.8
## 48         4.8
## 49         4.8
## 50         4.8
## 51         4.9
## 52         4.9
## 53         4.9
## 54         4.9
## 55         5.0
## 56         5.0
## 57         5.0
## 58         5.0
## 59         5.0
## 60         5.1
## 61         5.1
## 62         5.1
## 63         5.1
## 64         5.1
## 65         5.1
## 66         5.2
## 67         5.2
## 68         5.2
## 69         5.2
## 70         5.2
## 71         5.2
## 72         5.2
## 73         5.2
## 74         5.2
## 75         5.2
## 76         5.2
## 77         5.2
## 78         5.2
## 79         5.2
## 80         5.2
## 81         5.2
## 82         5.2
## 83         5.2
## 84         5.2
## 85         5.3
## 86         5.3
## 87         5.3
## 88         5.3
## 89         5.3
## 90         5.3
## 91         5.3
## 92         5.3
## 93         5.3
## 94         5.3
## 95         5.4
## 96         5.4
## 97         5.4
## 98         5.4
## 99         5.4
## 100        5.4
## 101        5.4
## 102        5.4
## 103        5.4
## 104        5.4
## 105        5.4
## 106        5.4
## 107        5.4
## 108        5.5
## 109        5.5
## 110        5.5
## 111        5.5
## 112        5.5
## 113        5.5
## 114        5.5
## 115        5.5
## 116        5.5
## 117        5.5
## 118        5.5
## 119        5.5
## 120        5.5
## 121        5.5
## 122        5.5
## 123        5.5
## 124        5.5
## 125        5.5
## 126        5.5
## 127        5.6
## 128        5.6
## 129        5.6
## 130        5.6
## 131        5.6
## 132        5.6
## 133        5.6
## 134        5.6
## 135        5.6
## 136        5.6
## 137        5.6
## 138        5.6
## 139        5.6
## 140        5.6
## 141        5.6
## 142        5.7
## 143        5.7
## 144        5.7
## 145        5.7
## 146        5.7
## 147        5.7
## 148        5.7
## 149        5.7
## 150        5.7
## 151        5.7
## 152        5.7
## 153        5.7
## 154        5.7
## 155        5.7
## 156        5.7
## 157        5.7
## 158        5.7
## 159        5.7
## 160        5.7
## 161        5.7
## 162        5.8
## 163        5.8
## 164        5.8
## 165        5.8
## 166        5.8
## 167        5.8
## 168        5.8
## 169        5.8
## 170        5.8
## 171        5.8
## 172        5.8
## 173        5.8
## 174        5.8
## 175        5.8
## 176        5.8
## 177        5.8
## 178        5.8
## 179        5.8
## 180        5.8
## 181        5.8
## 182        5.8
## 183        5.8
## 184        5.8
## 185        5.8
## 186        5.8
## 187        5.8
## 188        5.8
## 189        5.8
## 190        5.8
## 191        5.8
## 192        5.9
## 193        5.9
## 194        5.9
## 195        5.9
## 196        5.9
## 197        5.9
## 198        5.9
## 199        5.9
## 200        5.9
## 201        5.9
## 202        5.9
## 203        5.9
## 204        5.9
## 205        5.9
## 206        5.9
## 207        5.9
## 208        6.0
## 209        6.0
## 210        6.0
## 211        6.0
## 212        6.0
## 213        6.0
## 214        6.0
## 215        6.0
## 216        6.0
## 217        6.0
## 218        6.0
## 219        6.0
## 220        6.0
## 221        6.1
## 222        6.1
## 223        6.1
## 224        6.1
## 225        6.1
## 226        6.1
## 227        6.1
## 228        6.1
## 229        6.1
## 230        6.1
## 231        6.1
## 232        6.1
## 233        6.1
## 234        6.1
## 235        6.1
## 236        6.1
## 237        6.1
## 238        6.1
## 239        6.1
## 240        6.1
## 241        6.1
## 242        6.1
## 243        6.1
## 244        6.1
## 245        6.2
## 246        6.2
## 247        6.2
## 248        6.2
## 249        6.2
## 250        6.2
## 251        6.2
## 252        6.2
## 253        6.2
## 254        6.2
## 255        6.2
## 256        6.2
## 257        6.2
## 258        6.2
## 259        6.2
## 260        6.2
## 261        6.2
## 262        6.2
## 263        6.3
## 264        6.3
## 265        6.3
## 266        6.3
## 267        6.3
## 268        6.3
## 269        6.3
## 270        6.3
## 271        6.3
## 272        6.3
## 273        6.3
## 274        6.3
## 275        6.3
## 276        6.3
## 277        6.3
## 278        6.3
## 279        6.3
## 280        6.3
## 281        6.3
## 282        6.3
## 283        6.3
## 284        6.3
## 285        6.3
## 286        6.3
## 287        6.3
## 288        6.3
## 289        6.3
## 290        6.3
## 291        6.3
## 292        6.3
## 293        6.4
## 294        6.4
## 295        6.4
## 296        6.4
## 297        6.4
## 298        6.4
## 299        6.4
## 300        6.4
## 301        6.4
## 302        6.4
## 303        6.4
## 304        6.4
## 305        6.4
## 306        6.4
## 307        6.4
## 308        6.4
## 309        6.4
## 310        6.4
## 311        6.4
## 312        6.4
## 313        6.4
## 314        6.4
## 315        6.4
## 316        6.4
## 317        6.4
## 318        6.4
## 319        6.4
## 320        6.4
## 321        6.5
## 322        6.5
## 323        6.5
## 324        6.5
## 325        6.5
## 326        6.5
## 327        6.5
## 328        6.5
## 329        6.5
## 330        6.5
## 331        6.5
## 332        6.5
## 333        6.5
## 334        6.5
## 335        6.5
## 336        6.5
## 337        6.5
## 338        6.5
## 339        6.5
## 340        6.5
## 341        6.5
## 342        6.5
## 343        6.5
## 344        6.5
## 345        6.5
## 346        6.5
## 347        6.6
## 348        6.6
## 349        6.6
## 350        6.6
## 351        6.6
## 352        6.6
## 353        6.6
## 354        6.6
## 355        6.6
## 356        6.6
## 357        6.6
## 358        6.6
## 359        6.6
## 360        6.6
## 361        6.6
## 362        6.6
## 363        6.6
## 364        6.6
## 365        6.7
## 366        6.7
## 367        6.7
## 368        6.7
## 369        6.7
## 370        6.7
## 371        6.7
## 372        6.7
## 373        6.7
## 374        6.7
## 375        6.7
## 376        6.7
## 377        6.7
## 378        6.7
## 379        6.7
## 380        6.7
## 381        6.7
## 382        6.7
## 383        6.7
## 384        6.7
## 385        6.7
## 386        6.7
## 387        6.7
## 388        6.7
## 389        6.7
## 390        6.8
## 391        6.8
## 392        6.8
## 393        6.8
## 394        6.8
## 395        6.8
## 396        6.8
## 397        6.8
## 398        6.8
## 399        6.8
## 400        6.8
## 401        6.8
## 402        6.8
## 403        6.8
## 404        6.8
## 405        6.8
## 406        6.8
## 407        6.8
## 408        6.8
## 409        6.8
## 410        6.8
## 411        6.8
## 412        6.8
## 413        6.8
## 414        6.9
## 415        6.9
## 416        6.9
## 417        6.9
## 418        6.9
## 419        6.9
## 420        6.9
## 421        6.9
## 422        6.9
## 423        6.9
## 424        6.9
## 425        6.9
## 426        6.9
## 427        6.9
## 428        6.9
## 429        6.9
## 430        6.9
## 431        6.9
## 432        6.9
## 433        7.0
## 434        7.0
## 435        7.0
## 436        7.0
## 437        7.0
## 438        7.0
## 439        7.0
## 440        7.0
## 441        7.0
## 442        7.0
## 443        7.0
## 444        7.0
## 445        7.0
## 446        7.0
## 447        7.0
## 448        7.0
## 449        7.0
## 450        7.0
## 451        7.0
## 452        7.1
## 453        7.1
## 454        7.1
## 455        7.1
## 456        7.1
## 457        7.1
## 458        7.1
## 459        7.1
## 460        7.1
## 461        7.1
## 462        7.1
## 463        7.1
## 464        7.1
## 465        7.1
## 466        7.1
## 467        7.1
## 468        7.1
## 469        7.1
## 470        7.1
## 471        7.1
## 472        7.1
## 473        7.1
## 474        7.1
## 475        7.1
## 476        7.1
## 477        7.1
## 478        7.1
## 479        7.1
## 480        7.2
## 481        7.2
## 482        7.2
## 483        7.2
## 484        7.2
## 485        7.2
## 486        7.2
## 487        7.2
## 488        7.2
## 489        7.2
## 490        7.2
## 491        7.2
## 492        7.2
## 493        7.2
## 494        7.2
## 495        7.2
## 496        7.2
## 497        7.2
## 498        7.2
## 499        7.2
## 500        7.3
## 501        7.3
## 502        7.3
## 503        7.3
## 504        7.3
## 505        7.3
## 506        7.3
## 507        7.3
## 508        7.3
## 509        7.3
## 510        7.3
## 511        7.3
## 512        7.3
## 513        7.3
## 514        7.3
## 515        7.3
## 516        7.3
## 517        7.3
## 518        7.3
## 519        7.3
## 520        7.3
## 521        7.4
## 522        7.4
## 523        7.4
## 524        7.4
## 525        7.4
## 526        7.4
## 527        7.4
## 528        7.4
## 529        7.4
## 530        7.4
## 531        7.4
## 532        7.4
## 533        7.5
## 534        7.5
## 535        7.5
## 536        7.5
## 537        7.5
## 538        7.5
## 539        7.5
## 540        7.5
## 541        7.5
## 542        7.5
## 543        7.6
## 544        7.6
## 545        7.6
## 546        7.6
## 547        7.6
## 548        7.6
## 549        7.6
## 550        7.6
## 551        7.6
## 552        7.6
## 553        7.7
## 554        7.7
## 555        7.7
## 556        7.7
## 557        7.7
## 558        7.7
## 559        7.7
## 560        7.7
## 561        7.8
## 562        7.8
## 563        7.8
## 564        7.9
## 565        7.9
## 566        7.9
## 567        7.9
## 568        8.0
## 569        8.1
## 570        8.1
## 571        8.1
## 572        8.2
## 573        8.2
## 574        8.2
## 575        8.2
## 576        8.2
## 577        8.3
## 578        8.3
## 579        8.4
## 580        8.4
## 581        8.4
## 582        8.5
## 583        8.6
## 584        9.0
mutate(df, "Runtime", 2)
##                                                                                                          Title
## 1                                                                                              Enter the Anime
## 2                                                                                                  Dark Forces
## 3                                                                                                      The App
## 4                                                                                               The Open House
## 5                                                                                                  Kaali Khuhi
## 6                                                                                                        Drive
## 7                                                                                            Leyla Everlasting
## 8                                                                              The Last Days of American Crime
## 9                                                                                                      Paradox
## 10                                                                                          Sardar Ka Grandson
## 11                                                                                        Searching for Sheela
## 12                                                                                                    The Call
## 13                                                                                                     Whipped
## 14                                                                                          All Because of You
## 15                                                                                                       Mercy
## 16                                                                                              After the Raid
## 17                                                                                               Ghost Stories
## 18                                                                                    The Last Thing He Wanted
## 19                                                                                   What Happened to Mr. Cha?
## 20                                                                                                  Death Note
## 21                                                                           Hello Privilege. It's Me, Chelsea
## 22                                                                                            Secret Obsession
## 23                                                                                                  Sextuplets
## 24                                                                                       The Girl on the Train
## 25                                                                                               Thunder Force
## 26                                                                                                Fatal Affair
## 27                                                                                                Just Say Yes
## 28                                                                                            Seriously Single
## 29                                                                       The Misadventures of Hedi and Cokeman
## 30                                                                                            5 Star Christmas
## 31                                                                                                 After Maria
## 32                                                               I Am the Pretty Thing That Lives in the House
## 33                                                                                                 Paris Is Us
## 34                                                            Porta dos Fundos: The First Temptation of Christ
## 35                                                                                                 Rattlesnake
## 36                                                                                                 The Players
## 37                                                                                                  We Are One
## 38                                                                                               Finding Agnes
## 39                                                                                                          IO
## 40                                                                                                  Sentinelle
## 41                                                                                                 Sol Levante
## 42                                                                                                 The Binding
## 43                                                                                            We Can Be Heroes
## 44                                                                                         Christmas Crossfire
## 45                                                                                                  Coin Heist
## 46                                                                                          Mrs. Serial Killer
## 47                                                                          Nobody Sleeps in the Woods Tonight
## 48                                                                                                 Take the 10
## 49                                                                                              The Main Event
## 50                                                                                            The Ridiculous 6
## 51                                                                                             Earth and Blood
## 52                                                                                                    Fearless
## 53                                                                                                Holiday Rush
## 54                                                                                         The Day of the Lord
## 55                                                                                               Airplane Mode
## 56                                                                                                 How It Ends
## 57                                                                                  Love Like the Falling Rain
## 58                                                                                                     Rebirth
## 59                                                                                                Squared Love
## 60                                                                                                     Cadaver
## 61                                                                                                    Clinical
## 62                                                                                             Coffee & Kareem
## 63                                                                                                        Dude
## 64                                                                                                  Geez & Ann
## 65                                                                                      The Larva Island Movie
## 66                                                                                                #REALITYHIGH
## 67                                                           American Factory: A Conversation with the Obamas 
## 68                                                                                                  Desperados
## 69                                                                      Dolly Parton's Christmas on the Square
## 70                                                                                          Father of the Year
## 71                                                                                                   Firebrand
## 72                                                                                                   Ghost Lab
## 73                                                                                            Girlfriend's Day
## 74                                                                           Handsome: A Netflix Mystery Movie
## 75                                                                                             Hubie Halloween
## 76                                                                                                       Ibiza
## 77                                                                                            Rim of the World
## 78                                                                                                Sandy Wexler
## 79                                                                                           See You Yesterday
## 80                                                                         Still Laugh-In: The Stars Celebrate
## 81                                                                                         Strip Down, Rise Up
## 82                                                                                                   Tall Girl
## 83                                                                                                   The Beast
## 84                                                                                                 The Week Of
## 85                                                                       A Christmas Prince: The Royal Wedding
## 86                                                                                              Back to School
## 87                                                                                              Dangerous Lies
## 88                                                                              Gunjan Saxena: The Kargil Girl
## 89                                                                                                   Intuition
## 90                                                                    The Most Assassinated Woman in the World
## 91                                                                                         Things Heard & Seen
## 92                                                                                            To Each, Her Own
## 93                                                                    Who Would You Take to a Deserted Island?
## 94                                                                                                        XOXO
## 95                                                                     A Babysitter's Guide to Monster Hunting
## 96                                                                          A Christmas Prince: The Royal Baby
## 97                                                                                          Despite Everything
## 98                                                                       Dolly Kitty and Those Twinkling Stars
## 99                                                                                    Freaks: You're One of Us
## 100                                                                                            Game Over, Man!
## 101                                                                                                     Guilty
## 102                                                                                          In the Tall Grass
## 103                                                                                              Madame Claude
## 104                                                                                                      Naked
## 105                                                                                           Outside the Wire
## 106                                                                        The Princess Switch: Switched Again
## 107                                                                                     Under the Riccione Sun
## 108                                                                                    A Very Murray Christmas
## 109                                                                                               Been So Long
## 110                                                                                                  Dead Kids
## 111                                                                                              Get the Grift
## 112                                                                                       Ghosts of Sugar Land
## 113                                                                                               House Arrest
## 114                                                                        Kevin Hart's Guide to Black History
## 115                                                                                        Love Wedding Repeat
## 116                                                                                                       Mute
## 117                                                                                                    Òlòt?ré
## 118                                                                                                    Red Dot
## 119                                                                                                Ride or Die
## 120                                                                                               Step Sisters
## 121                                                                                    The Cloverfield Paradox
## 122                                                                                The Knight Before Christmas
## 123                                                                      The Legacy of a Whitetail Deer Hunter
## 124                                                                                                The Package
## 125                                                                                              Unicorn Store
## 126                                                                                               Wine Country
## 127                                                                                                Bomb Scared
## 128                                                                                              Brahman Naman
## 129                                                                                                 Double Dad
## 130                                                                                           Falling Inn Love
## 131                                                                                              Hold the Dark
## 132                                                                                           Love, Guaranteed
## 133                                                                                        One-Way to Tomorrow
## 134                                                                            Sarah Cooper: Everything's Fine
## 135                                                                                             The Last Laugh
## 136                                                                                          The Last Paradiso
## 137                                                                                           The Midnight Sky
## 138                                                                                              The Paramedic
## 139                                                                                              The Sleepover
## 140                                                                                     Vampires vs. the Bronx
## 141                                                                                       Why Did You Kill Me?
## 142                                                                                                A Week Away
## 143                                                                                           Caught by a Wave
## 144                                                                                      Christmas Inheritance
## 145                                                                                                 Dad Wanted
## 146                                                                                        El Camino Christmas
## 147                                                                                                        Eli
## 148                                                                                           Ginny Weds Sunny
## 149                                                                                                   Good Sam
## 150                                                                                                  Lionheart
## 151                                                                                                Little Evil
## 152                                                                                                   One Take
## 153                                                                                           Out of Many, One
## 154                                                                                                Point Blank
## 155                                                                                                 Prime Time
## 156                                                                                                The Do-Over
## 157                                                                                       The Holiday Calendar
## 158                                                                                    The Woman in the Window
## 159                                                                                            The Wrong Missy
## 160                                                                                             Velvet Buzzsaw
## 161                                                                                                    Yes Day
## 162                                                                                                  15 August
## 163                                                                                     A California Christmas
## 164                                                                                         A Christmas Prince
## 165                                                                                        All Day and a Night
## 166                                                                                               American Son
## 167                                                                                                      Barry
## 168                                                                                                  Candy Jar
## 169                                                                                    Choked: Paisa Bolta Hai
## 170                                                                                               Class of '83
## 171                                                                                                 Extinction
## 172                                                                                          Happy Anniversary
## 173                                                                                             I Am All Girls
## 174                                                                                                Let It Snow
## 175                                                                                                    Mascots
## 176                                                                                   Operation Christmas Drop
## 177                                                                                               Rajma Chawal
## 178                                                                                               Rich in Love
## 179                                                                                                Rising High
## 180                                                                                                Rodney King
## 181                                                                                  Sierra Burgess Is a Loser
## 182                                                                                               Small Crimes
## 183                                                                                     Special Correspondents
## 184                                                                                                        TAU
## 185                                                                                            The After Party
## 186                                                                               The Babysitter: Killer Queen
## 187                                                                                           The Claus Family
## 188                                                                                        The Kissing Booth 2
## 189                                                                                           The Perfect Date
## 190                                                                                             What We Wanted
## 191                                                                                            You've Got This
## 192                                                                                                 6 Balloons
## 193                                                                                          A Fall from Grace
## 194                                                                                                    Amateur
## 195                                                                                           Army of the Dead
## 196                                                                                                        Cam
## 197                                                                                            Earthquake Bird
## 198                                                             Frankenstein's Monster's Monster, Frankenstein
## 199                                                                                                 Horse Girl
## 200                                                         Notes from Dunblane: Lesson from a School Shooting
## 201                                                                                                      Maska
## 202                                                                                                The Decline
## 203                                                                               The Minimalists: Less Is Now
## 204                                                                                             The Polka King
## 205                                                                                                   The Prom
## 206                                                                  True Memoirs of an International Assassin
## 207                                                                                                     Ultras
## 208                                                                                                Come Sunday
## 209                                                                                       Forgive Us Our Debts
## 210                                                                                                       iBoy
## 211                                                                                                 Lovefucked
## 212                                                                                                    Juanita
## 213                                                                                             Murder Mystery
## 214                                                                                              Project Power
## 215                                                                                                    Rebecca
## 216                                                                         The Christmas Chronicles: Part Two
## 217                                                                                          The Kissing Booth
## 218                                                                                        The Princess Switch
## 219                                                                     To All the Boys: P.S. I Still Love You
## 220                                                                                                War Machine
## 221                                                                                              6 Underground
## 222                                                                               Between Two Ferns: The Movie
## 223                                                                                              Burning Sands
## 224                                                                                           Casting JonBenet
## 225                                                                                 Deidra & Laney Rob a Train
## 226                                                                                             Finding 'Ohana
## 227                                                                                                   Holidate
## 228                                                                                        Holiday in the Wild
## 229                                                                                           Hot Girls Wanted
## 230                                                                                                Like Father
## 231                                                                                                 Lost Girls
## 232                                                                                                  Otherhood
## 233                                                                                      Pee-wee's Big Holiday
## 234                                                                                                 Rogue City
## 235                                                                                                     Sergio
## 236                                                                                                Stuck Apart
## 237                                                                                       Tersanjung the Movie
## 238                                                                                                 The Killer
## 239                                                                                              The Lovebirds
## 240                                                                            The Most Hated Woman in America
## 241                                                                                             The Perfection
## 242                                                                              Tribhanga – Tedhi Medhi Crazy
## 243                                                                                            Unknown Origins
## 244                                                                                                    Work It
## 245                                                                                                 Alien Xmas
## 246                                                                                Baggio: The Divine Ponytail
## 247                                                                                                 Below Zero
## 248                                                                                                   Citation
## 249                                                                                     Crazy Awesome Teachers
## 250                                                                              Have You Ever Seen Fireflies?
## 251                                                                                           High Flying Bird
## 252                                                                                  In the Shadow of the Moon
## 253                                                                                                Lost Bullet
## 254                                                                         Octonauts & the Caves of Sac Actun
## 255                                                                                      Offering to the Storm
## 256                                                                                            Roxanne Roxanne
## 257                                                                                              Someone Great
## 258                                                                                       Spenser Confidential
## 259                                                                                  The Land of Steady Habits
## 260                                                                                          The Rachel Divide
## 261                                                                                                    Voyuer 
## 262                                                                                                 Win It All
## 263                                                                                                       1922
## 264                                                                                     A Tale of Two Kitchens
## 265                                                                                           Alex Strangelove
## 266                                                                                                    Apostle
## 267                                                                                                      Benji
## 268                                                                                                     Bright
## 269                                                                                                      Cargo
## 270                                                                                            Concrete Cowboy
## 271                                                                                              Feel the Beat
## 272                                                                                               Get the Goat
## 273                                                                                       I Am Not an Easy Man
## 274                                                                                                June & Kopi
## 275                                                                                              Music Teacher
## 276                                                                                       Nail Bomber: Manhunt
## 277                                                                                           Notes for My Son
## 278                                                                                                      Polar
## 279                                                                        Porta dos Fundos: The Last Hangover
## 280                                                                                                Sand Castle
## 281                                                                                               Shimmer Lake
## 282                                                                                                   Spectral
## 283                                                                                             The Babysitter
## 284                                                                                              The Discovery
## 285                                                                                         The Forest of Love
## 286                                                                                             The Laundromat
## 287                                                                               The Legend of Cocaine Island
## 288                                                                                               The Outsider
## 289                                                                                               Time to Hunt
## 290                                                                        To All the Boys: Always and Forever
## 291                                                                           Travis Scott: Look Mom I Can Fly
## 292                                                                                                   Uncorked
## 293                                                                                      Anelka: Misunderstood
## 294                                                                       Ariana Grande: Excuse Me, I Love You
## 295                                                                                                        ARQ
## 296                                                                                                    Birders
## 297                                                                                       Como Caído del Cielo
## 298                                                                                                First Match
## 299                                                                                                  Fractured
## 300                                                                                          Irreplaceable You
## 301                                                                                                 Isi & Ossi
## 302                                                                          John Was Trying to Contact Aliens
## 303                                                                                               Layla Majnun
## 304                                                                   Murder to Mercy: The Cyntoia Brown Story
## 305                                                                                                 My Own Man
## 306                                                                                         Nappily Ever After
## 307                                                                                              Over the Moon
## 308                                                                                                Street Flow
## 309                                                                                              Strong Island
## 310                                                                    Sturgill Simpson Presents: Sound & Fury
## 311                                                                                            Take Your Pills
## 312                                                                                        The Heartbreak Club
## 313                                                                                        The Mars Generation
## 314                                                                                               The Occupant
## 315                                                                                            The Willoughbys
## 316                                                                                            Triple Frontier
## 317                                                                                             Two Catalonias
## 318                                                                                         Walk. Ride. Rodeo.
## 319                                                                                                   Wheelman
## 320                                                                                          When We First Met
## 321                                                                                             A 3 Minute Hug
## 322                                                                                      All the Bright Places
## 323                                                                                           All Together Now
## 324                                                                                  Altered Carbon: Resleeved
## 325                                                                  Antoine Griezmann: The Making of a Legend
## 326                                                                                                    Canvas 
## 327                                                                    Chadwick Boseman: Portrait of an Artist
## 328                                                                                                 Chopsticks
## 329                                                                                                Da 5 Bloods
## 330                                                                          Dolly Parton: A MusiCares Tribute
## 331                                                            Eurovision Song Contest: The Story of Fire Saga
## 332                                                                                              Gerald's Game
## 333                                                                                                  His House
## 334                                                                         Jingle Jangle: A Christmas Journey
## 335                                                                                          Life Overtakes Me
## 336                                                                                               Lust Stories
## 337                                                                                                    Monster
## 338                                                                               Mowgli: Legend of the Jungle
## 339                                                                                      Nobody Knows I'm Here
## 340                                                                     Nobody Speak: Trials of the Free Press
## 341                                                                                                     Oxygen
## 342                                                                                                  Set It Up
## 343                                                                               The Incredible Jessica James
## 344                                                                                                  Tigertail
## 345                                                                                                     Tramps
## 346                                                                                          What Did Jack Do?
## 347                                                                                                   Bad Trip
## 348                                                                                                   Bird Box
## 349                                                                                                    Bulbbul
## 350                                                                                            Crazy About Her
## 351                                                                                            Elisa & Marcela
## 352                                                                                   I'll Sleep When I'm Dead
## 353                                                                              I'm Thinking of Ending Things
## 354                                                                                         It Takes a Lunatic
## 355                                                                                                  Milestone
## 356                                                                                              Recovery Boys
## 357                                                                     ReMastered: Who Killed Jam Master Jay?
## 358                                                                                    Shawn Mendes: In Wonder
## 359                                                                                             Space Sweepers
## 360                                                                                          The American Meme
## 361                                                                                                  The Angel
## 362                                                                                       The Crimes That Bind
## 363                                                                                  The Red Sea Diving Resort
## 364                                                                                What Would Sophia Loren Do?
## 365                                                                                             A Whisker Away
## 366                                                                                            Ajeeb Daastaans
## 367                                                                                     Arlo the Alligator Boy
## 368                                                                               Bikram: Yogi, Guru, Predator
## 369                                                                                                     Blame!
## 370                                                                                               Blue Miracle
## 371                                                                                              CounterPunch 
## 372                                                                    Crack: Cocaine, Corruption & Conspiracy
## 373                                                                                                 Extraction
## 374                                                                                               Giving Voice
## 375                                                                                            Hillbilly Elegy
## 376                                                                         Hope Frozen: A Quest to Live Twice
## 377                                                                                            Imperial Dreams
## 378                                                                                     Just Another Christmas
## 379                                                                                           Little Miss Sumo
## 380                                                                                            Malcolm & Marie
## 381                                                        Michael Bolton's Big, Sexy, Valentine's Day Special
## 382                                                                                                      Moxie
## 383                                                                                          Night in Paradise
## 384                                                                                                Paper Lives
## 385                                                                                   Parchis: The Documentary
## 386                                                                                                   Tallulah
## 387                                                                                              The Old Guard
## 388                                                                           Tony Robbins: I Am Not Your Guru
## 389                                                                                                   Upstarts
## 390                                                                                                    22 July
## 391                                                                                                     7 años
## 392                                                                                A Futile and Stupid Gesture
## 393                                                              A Life of Speed: The Juan Manuel Fangio Story
## 394                                                                                    A Love Song for Latasha
## 395                                                                                           All in My Family
## 396                                                                                         Always Be My Maybe
## 397                                                                                                   Becoming
## 398                                                                                       Long Live Brij Mohan
## 399                                                                                                    Calibre
## 400                                                                                              Death to 2020
## 401                                                                                        GIMS: On the Record
## 402                                                               Have a Good Trip: Adventures in Psychedelics
## 403                                                                                                 Heroin(e) 
## 404                                                                                                 Mercury 13
## 405                                                                                          Saving Capitalism
## 406                                                                                                Serious Men
## 407                                                                                       The Boys in the Band
## 408                                                                   The Boys in the Band: Something Personal
## 409                                                                                             The Life Ahead
## 410                                                                                 The Other Side of the Wind
## 411                                                                                                 The Trader
## 412                                                                                                To the Bone
## 413                                                                                Tony Parker: The Final Shot
## 414                                                                                                   AK vs AK
## 415                                                                                                Amanda Knox
## 416                                                                               Bigflo & Oil: Hip Hop Frenzy
## 417                                                                              Biggie: I Got a Story to Tell
## 418                                                                                           Cops and Robbers
## 419                                                                 I Don't Feel at Home in This World Anymore
## 420                                                                                                  Laerte-se
## 421                                                                                                       Mank
## 422                                                                                         Our Souls at Night
## 423                                                                                                Outlaw King
## 424                                                                                                   Pagglait
## 425                                                                          ReMastered: Who Shot the Sheriff?
## 426                                                                                              Seeing Allred
## 427                                                                                         Spelling the Dream
## 428                                                                                     The Claudia Kishi Club
## 429                                                                                             The Half of It
## 430                                                                                             The Highwaymen
## 431                                      The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 432                                                                  The Meyerowitz Stories (New and Selected)
## 433                                                                        Feminists: What Were They Thinking?
## 434                                                                                        Gaga: Five Foot Two
## 435                                I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 436                                                                                              Kingdom of Us
## 437                                                                                 Lorena, Light-Footed Woman
## 438                                                                      Los Tigres del Norte at Folsom Prison
## 439                                                                                   Ma Rainey's Black Bottom
## 440                                                       Ma Rainey's Black Bottom: A Legacy Brought to Screen
## 441                                                    Operation Varsity Blues: The College Admissions Scandal
## 442                                                                                                       Pele
## 443                                                                        ReMastered: Devil at the Crossroads
## 444                                                                               ReMastered: The Lion's Share
## 445                                                                    ReMastered: The Miami Showband Massacre
## 446                                                                                                  Resurface
## 447                                                                          Rocko's Modern Life: Static Cling
## 448                                                                                                Rose Island
## 449                                                                                   The Christmas Chronicles
## 450                                                                                                   The Dirt
## 451                                                                                     The Night Comes for Us
## 452                                                     13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 453                                                                                         Angela's Christmas
## 454                                                                                    Angela's Christmas Wish
## 455                                                                                                      Beats
## 456                                                                                            Circus of Books
## 457                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 458                                                                                    Derren Brown: Sacrifice
## 459                                                                                    El Pepe: A Supreme Life
## 460                                                                                                   End Game
## 461                                                                                                     Evelyn
## 462                                                                                                      Ferry
## 463                                                                                           Grass Is Greener
## 464                                                                        Guillermo Vilas: Settling the Score
## 465                                                                            Joshua: Teenager vs. Superpower
## 466                                                                        Keith Richards: Under the Influence
## 467                                                                                       Knock Down the House
## 468                                                                      Loudon Wainwright III: Surviving Twin
## 469                                                                                  My Beautiful Broken Brain
## 470                                                                                                  One of Us
## 471                                                                                          Pieces of a Woman
## 472                                                                                       Ram Dass, Going Home
## 473                                                                 ReMastered: Tricky Dick & the Man in Black
## 474                                                                                          Rooting for Roona
## 475                                                                                     The Devil All the Time
## 476                                                                                                    The Dig
## 477                                                                                             The Great Hack
## 478                                                                                            The White Tiger
## 479                                                                          To All the Boys I've Loved Before
## 480                                                                      American Murder: The Family Next Door
## 481                                                                                             Audrie & Daisy
## 482                                                                                First They Killed My Father
## 483                                                               Fyre: The Greatest Party That Never Happened
## 484                                                                                           Into the Inferno
## 485                                                                                               LA Originals
## 486                                                                                               Ladies First
## 487                                                                                       Love per Square Foot
## 488                                                                                                  Paddleton
## 489                                                                                               Private Life
## 490                                                                                                  Seventeen
## 491                                                                                                  Sometimes
## 492                                                                                                       Soni
## 493                                                                                    The 40-Year-Old Version
## 494                                                                                               The Disciple
## 495                                                                                      The Edge of Democracy
## 496                                                                                                   The King
## 497                                                                The Road to El Camino: A Breaking Bad Movie
## 498                                                                                    The Siege of Jadotville
## 499                                                                                                      Zion 
## 500                                                                                        Dolemite Is My Name
## 501                                                                            El Camino: A Breaking Bad Movie
## 502                                                                                                   Extremis
## 503                                                                                         Father Soldier Son
## 504                                                                                         Get Me Roger Stone
## 505                                                                                         I'm No Longer Here
## 506                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 507                                                                         Octonauts & the Great Barrier Reef
## 508                                                                                                       Okja
## 509                                                                                                 On My Skin
## 510                                                                                             Raat Akeli Hai
## 511                                                                        ReMastered: Massacre at the Stadium
## 512                                                                  ReMastered: The Two Killings of Sam Cooke
## 513                                                                                Secrets of the Saqqara Tomb
## 514                                                                                    Sitara: Let Girls Dream
## 515                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 516                                                                                            Team Foxcatcher
## 517                                                                               The Ballad of Buster Scruggs
## 518                                                                    The Death and Life of Marsha P. Johnson
## 519                                                                                 The Fundamentals of Caring
## 520                                                           The Other One: The Long Strange Trip of Bob Weir
## 521                                                                                           American Factory
## 522                                                                                           Fire in Paradise
## 523                                                                                                  Long Shot
## 524                                                                                             Miss Americana
## 525                                                                                   Period. End of Sentence.
## 526                                                                              Shawn Mendes: Live in Concert
## 527                                                                                                   Shirkers
## 528                                                                                        The Black Godfather
## 529                                                                              The Irishman: In Conversation
## 530                                                                                           The Speed Cubers
## 531                                                                              They'll Love Me When I'm Dead
## 532                                                                                                        Tig
## 533                                                                Barbra: The Music, The Mem'ries, The Magic!
## 534                                                                                Blackpink: Light Up the Sky
## 535                                                                                                City of Joy
## 536                                                                                       Dick Johnson Is Dead
## 537                                                                             Homecoming: A Film by Beyonce 
## 538                                                                             Invader Zim: Enter the Florpus
## 539                                                                      Joan Didion: The Center Will Not Hold
## 540                                                                        John Mulaney & the Sack Lunch Bunch
## 541                                                                                              Reversing Roe
## 542                                                                                          The White Helmets
## 543                                                                                                  Athlete A
## 544                                                                                                       Ludo
## 545                                                                                                     Quincy
## 546                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 547                                                                                           Tell Me Who I Am
## 548                                                                                          The Bleeding Edge
## 549                                                                                         The Social Dilemma
## 550                                                                                              The Two Popes
## 551                                                                                What Happened, Miss Simone?
## 552                                                                                                 Yeh Ballet
## 553                                                                                                      Anima
## 554                                                                                        Beasts of No Nation
## 555                                                                           Brene Brown: The Call to Courage
## 556                                                                         Crip Camp: A Disability Revolution
## 557 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 558                                                                     Justin Timberlake + The Tennessee Kids
## 559                                                                                               Road to Roma
## 560                                                                                                       Roma
## 561                                                                             If Anything Happens I Love You
## 562                                                                                               The Irishman
## 563                                                                                 The Trial of the Chicago 7
## 564                                                                                              A Secret Love
## 565                                                                                                     Icarus
## 566                                                                                             Marriage Story
## 567                                                                                             The Ivory Game
## 568                                                               Struggle: The Life and Lost Art of Szukaiski
## 569                                                                                             Chasing Coral 
## 570                                                                                         My Octopus Teacher
## 571                                                                                             Rising Phoenix
## 572                                                                                                       13th
## 573                                                                          Disclosure: Trans Lives on Screen
## 574                                                                                                      Klaus
## 575                                                                                                 Seaspiracy
## 576                                                                      The Three Deaths of Marisela Escobedo
## 577                                                                                    Cuba and the Cameraman 
## 578                                                                                     Dancing with the Birds
## 579                                                                 Ben Platt: Live from Radio City Music Hall
## 580                                                                      Taylor Swift: Reputation Stadium Tour
## 581                                                                Winter on Fire: Ukraine's Fight for Freedom
## 582                                                                                    Springsteen on Broadway
## 583                                                                  Emicida: AmarElo - It's All For Yesterday
## 584                                                                   David Attenborough: A Life on Our Planet
##                                    Genre           Premiere Runtime IMDB.Score
## 1                            Documentary     August 5, 2019      58        2.5
## 2                               Thriller    August 21, 2020      81        2.6
## 3                  Science fiction/Drama  December 26, 2019      79        2.6
## 4                        Horror thriller   January 19, 2018      94        3.2
## 5                                Mystery   October 30, 2020      90        3.4
## 6                                 Action   November 1, 2019     147        3.5
## 7                                 Comedy   December 4, 2020     112        3.7
## 8                    Heist film/Thriller       June 5, 2020     149        3.7
## 9                Musical/Western/Fantasy     March 23, 2018      73        3.9
## 10                                Comedy       May 18, 2021     139        4.1
## 11                           Documentary     April 22, 2021      58        4.1
## 12                                 Drama  November 27, 2020     112        4.1
## 13                       Romantic comedy September 18, 2020      97        4.1
## 14                         Action comedy    October 1, 2020     101        4.2
## 15                              Thriller  November 22, 2016      90        4.2
## 16                           Documentary  December 19, 2019      25        4.3
## 17                      Horror anthology    January 1, 2020     144        4.3
## 18                    Political thriller  February 21, 2020     115        4.3
## 19                                Comedy    January 1, 2021     102        4.3
## 20                       Horror thriller    August 25, 2017     100        4.4
## 21                           Documentary September 13, 2019      64        4.4
## 22                              Thriller      July 18, 2019      97        4.4
## 23                                Comedy    August 16, 2019      99        4.4
## 24                              Thriller  February 26, 2021     120        4.4
## 25                      Superhero-Comedy      April 9, 2021     105        4.4
## 26                              Thriller      July 16, 2020      89        4.5
## 27                       Romantic comedy      April 2, 2021      97        4.5
## 28                                Comedy      July 31, 2020     107        4.5
## 29                                Comedy  February 10, 2021      99        4.5
## 30                                Comedy   December 7, 2018      95        4.6
## 31                           Documentary       May 24, 2019      37        4.6
## 32                                Horror   October 28, 2016      89        4.6
## 33                         Romance drama  February 22, 2019      83        4.6
## 34                                Comedy   December 3, 2019      46        4.6
## 35                                Horror   October 25, 2019      85        4.6
## 36                                Comedy      July 15, 2020      88        4.6
## 37                           Documentary      July 14, 2020      86        4.6
## 38                                 Drama  November 30, 2020     105        4.7
## 39                 Science fiction/Drama   January 18, 2019      95        4.7
## 40                                Action      March 5, 2021      80        4.7
## 41                         Anime / Short      April 2, 2020       4        4.7
## 42                                 Drama    October 2, 2020      93        4.7
## 43                             Superhero  December 25, 2020     100        4.7
## 44                              Thriller   December 4, 2020     106        4.8
## 45                                 Heist    January 6, 2017      97        4.8
## 46                              Thriller        May 1, 2020     106        4.8
## 47                                Horror   October 28, 2020     103        4.8
## 48                                Comedy   January 20, 2017      80        4.8
## 49                                Comedy     April 10, 2020     101        4.8
## 50                               Western  December 11, 2015     119        4.8
## 51                                Action     April 17, 2020      80        4.9
## 52                   Animation/Superhero    August 14, 2020      89        4.9
## 53                           Family film  November 28, 2019      94        4.9
## 54                                 Drama   October 30, 2020      93        4.9
## 55                                Comedy   January 23, 2020      96        5.0
## 56                       Action-thriller      July 13, 2018     113        5.0
## 57                                 Drama   October 15, 2020      86        5.0
## 58                              Thriller      July 15, 2016     100        5.0
## 59                       Romantic comedy  February 11, 2021     102        5.0
## 60                                Horror   October 22, 2020      86        5.1
## 61                              Thriller   January 13, 2017     104        5.1
## 62                         Action comedy      April 3, 2020      88        5.1
## 63                     Teen comedy-drama     April 20, 2018      97        5.1
## 64                        Romantic drama  February 25, 2021     105        5.1
## 65                             Animation      July 23, 2020      90        5.1
## 66                                Comedy  September 8, 2017      99        5.2
## 67                 Aftershow / Interview    August 21, 2019      10        5.2
## 68                       Romantic comedy       July 3, 2020     106        5.2
## 69                     Christmas musical  November 22, 2020      98        5.2
## 70                                Comedy      July 20, 2018      94        5.2
## 71                                 Drama  February 22, 2019     112        5.2
## 72                                Horror       May 26, 2021     117        5.2
## 73                                Comedy  February 14, 2017      70        5.2
## 74                                Comedy        May 5, 2017      81        5.2
## 75                                Comedy    October 7, 2020     103        5.2
## 76                                Comedy       May 25, 2018      94        5.2
## 77             Science fiction adventure       May 24, 2019      98        5.2
## 78                                Comedy     April 14, 2017     131        5.2
## 79                       Science fiction       May 17, 2019      87        5.2
## 80                          Variety show       May 14, 2019      60        5.2
## 81                           Documentary   February 5, 2021     112        5.2
## 82                          Comedy-drama September 13, 2019     102        5.2
## 83                                 Drama  November 27, 2020      99        5.2
## 84                                Comedy     April 27, 2018     116        5.2
## 85                       Romantic comedy  November 30, 2018      92        5.3
## 86                                Comedy    August 30, 2019      83        5.3
## 87                              Thriller     April 30, 2020      97        5.3
## 88                                 Drama    August 12, 2020     112        5.3
## 89                              Thriller       May 28, 2020     116        5.3
## 90                              Thriller  September 7, 2018     102        5.3
## 91                                Horror     April 29, 2021     121        5.3
## 92                       Romantic comedy      June 24, 2018      95        5.3
## 93                                 Drama     April 12, 2019      93        5.3
## 94                                 Drama    August 26, 2016      92        5.3
## 95                 Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 96                       Romantic comedy   December 5, 2019      85        5.4
## 97                                Comedy        May 3, 2019      78        5.4
## 98                                 Drama September 18, 2020     120        5.4
## 99                    Supernatural drama  September 2, 2020      92        5.4
## 100                        Action/Comedy     March 23, 2018     101        5.4
## 101                             Thriller      March 6, 2020     119        5.4
## 102                               Horror    October 4, 2019     101        5.4
## 103                                Drama      April 2, 2021     112        5.4
## 104                               Comedy    August 11, 2017      96        5.4
## 105               Action/Science fiction   January 15, 2021     114        5.4
## 106                      Romantic comedy  November 19, 2020      97        5.4
## 107               Romantic teenage drama       July 1, 2020     101        5.4
## 108                     Comedy / Musical   December 4, 2015      56        5.5
## 109                              Musical   October 26, 2018     100        5.5
## 110                             Thriller   December 1, 2019      94        5.5
## 111                               Comedy     April 28, 2021      94        5.5
## 112                          Documentary   October 16. 2019      21        5.5
## 113                               Comedy  November 15, 2019     104        5.5
## 114                         Variety show   February 8, 2019      63        5.5
## 115                      Romantic comedy     April 10, 2020     100        5.5
## 116              Science fiction/Mystery  February 23, 2018     126        5.5
## 117                          Crime drama    October 2, 2020     106        5.5
## 118                             Thriller  February 11, 2021      86        5.5
## 119         Psychological thriller drama     April 15, 2021     142        5.5
## 120                               Comedy   January 19, 2018     108        5.5
## 121                      Science fiction   February 4, 2018     102        5.5
## 122                      Romantic comedy  November 21, 2019      92        5.5
## 123                     Adventure/Comedy       July 6, 2018      83        5.5
## 124                         Black comedy    August 10, 2018      94        5.5
## 125                               Comedy      April 5, 2019      92        5.5
## 126                               Comedy       May 10, 2019     103        5.5
## 127                         Black comedy   October 12, 2017      89        5.6
## 128                               Comedy       July 7, 2016      95        5.6
## 129                         Comedy-drama   January 15, 2021     103        5.6
## 130                      Romantic comedy    August 29, 2019      97        5.6
## 131                             Thriller September 28, 2018     125        5.6
## 132                      Romantic comedy  September 3, 2020      91        5.6
## 133                              Romance      June 19, 2020      90        5.6
## 134                         Variety show   October 27, 2020      49        5.6
## 135                         Comedy-drama   January 11, 2019      98        5.6
## 136                       Romantic drama   February 5, 2021     107        5.6
## 137                      Science fiction  December 23, 2020     118        5.6
## 138                             Thriller September 16, 2020      94        5.6
## 139                               Comedy    August 21, 2020     103        5.6
## 140                        Horror comedy    October 2, 2020      86        5.6
## 141                          Documentary     April 14, 2021      83        5.6
## 142                    Christian musical     March 26, 2021      97        5.7
## 143                  Romantic teen drama     March 25, 2021      99        5.7
## 144                       Romantic drama  December 15, 2017     104        5.7
## 145                               Family September 11, 2020     102        5.7
## 146                          Dark comedy   December 8, 2017      89        5.7
## 147                               Horror   October 18, 2019      98        5.7
## 148                      Romantic comedy    October 9, 2020     125        5.7
## 149                                Drama       May 16, 2019      89        5.7
## 150                               Comedy    January 4, 2019      94        5.7
## 151                        Comedy horror  September 1, 2017      94        5.7
## 152                          Documentary      June 18, 2020      85        5.7
## 153                          Documentary  December 12, 2018      34        5.7
## 154                               Action      July 12, 2019      86        5.7
## 155                             Thriller     April 14, 2021      91        5.7
## 156                        Action comedy       May 27, 2016     108        5.7
## 157                      Romantic comedy   November 2, 2018      95        5.7
## 158               Psychological thriller       May 14, 2021     100        5.7
## 159                               Comedy       May 13, 2020      90        5.7
## 160                             Thriller   February 1, 2019     112        5.7
## 161                               Comedy     March 12, 2021      86        5.7
## 162                         Comedy-drama     March 29, 2019     124        5.8
## 163                      Romantic comedy  December 14, 2020     107        5.8
## 164                      Romantic comedy  November 17, 2017      92        5.8
## 165                                Drama        May 1, 2020     121        5.8
## 166                                Drama   November 1, 2019      90        5.8
## 167                               Biopic  December 16, 2016     104        5.8
## 168                               Comedy     April 27, 2018      92        5.8
## 169                                Drama       June 5, 2020     114        5.8
## 170                                Drama    August 21, 2020      98        5.8
## 171             Science fiction/Thriller      July 27, 2018      95        5.8
## 172                      Romantic comedy     March 30, 2018      78        5.8
## 173                             Thriller       May 14, 2021     107        5.8
## 174                      Romantic comedy   November 8, 2019      92        5.8
## 175                         Mockumentary   October 13, 2016      95        5.8
## 176                      Romantic comedy   November 5, 2020      96        5.8
## 177                         Comedy-drama  November 30, 2018     118        5.8
## 178                      Romantic comedy     April 30, 2020     105        5.8
## 179                               Satire     April 17, 2020      94        5.8
## 180                         One-man show     April 28, 2017      52        5.8
## 181                Romantic comedy-drama  September 7, 2018     105        5.8
## 182                          Dark comedy     April 28, 2017      95        5.8
## 183                               Satire     April 29, 2016     100        5.8
## 184             Science fiction/Thriller      June 29, 2018      97        5.8
## 185                               Comedy    August 24, 2018      89        5.8
## 186                        Comedy/Horror September 10, 2020     102        5.8
## 187                              Fantasy   December 7, 2020      96        5.8
## 188                      Romantic comedy      July 24, 2020     131        5.8
## 189                      Romantic comedy     April 12, 2019      89        5.8
## 190                                Drama  November 11, 2020      93        5.8
## 191                      Romantic comedy    October 2, 2020     111        5.8
## 192                                Drama      April 6, 2018      75        5.9
## 193                             Thriller   January 17, 2020     120        5.9
## 194                         Sports-drama      April 6, 2018      96        5.9
## 195                         Zombie/Heist       May 21, 2021     148        5.9
## 196                 Psychological horror  November 16, 2018      94        5.9
## 197                              Mystery  November 15, 2019     107        5.9
## 198                         Mockumentary      July 16, 2019      32        5.9
## 199                                Drama   February 7, 2020     104        5.9
## 200                          Documentary September 28, 2018      23        5.9
## 201                      Romantic comedy     March 27, 2020     111        5.9
## 202                             Thriller     March 27, 2020      83        5.9
## 203                          Documentary    January 1, 2021      53        5.9
## 204                         Comedy-drama   January 12, 2018      95        5.9
## 205                              Musical  December 11, 2020     132        5.9
## 206                        Action comedy  November 11, 2016      98        5.9
## 207                          Sports film     March 20, 2020     108        5.9
## 208                               Biopic     April 13, 2018     106        6.0
## 209                                Drama        May 4, 2018     104        6.0
## 210             Science fiction/Thriller   January 27, 2017      90        6.0
## 211                                Drama     August 9, 2019     106        6.0
## 212                                Drama      March 8, 2019      90        6.0
## 213                       Comedy mystery      June 14, 2019      97        6.0
## 214                            Superhero    August 14, 2020     113        6.0
## 215                    Romantic thriller   October 21, 2020     123        6.0
## 216                     Christmas comedy  November 25, 2020     115        6.0
## 217                      Romantic comedy       May 11, 2018     105        6.0
## 218                      Romantic comedy  November 16, 2018     101        6.0
## 219                      Romantic comedy  February 12, 2020     102        6.0
## 220                           War-Comedy       May 26, 2017     122        6.0
## 221                               Action  December 13, 2019     128        6.1
## 222                               Comedy September 20, 2019      82        6.1
## 223                                Drama     March 10, 2017     102        6.1
## 224                          Documentary     April 28, 2017      80        6.1
## 225                                Drama     March 17, 2017      94        6.1
## 226                               Family   January 29, 2021     123        6.1
## 227              Romantic comedy/Holiday   October 28, 2020     104        6.1
## 228                    Adventure-romance   November 1, 2019      85        6.1
## 229                          Documentary       May 29, 2015      84        6.1
## 230                               Comedy     August 3, 2018     103        6.1
## 231                          Crime drama     March 13, 2020      95        6.1
## 232                               Comedy     August 2, 2019     100        6.1
## 233                            Adventure     March 18, 2016      89        6.1
## 234                          Crime drama   October 30, 2020     116        6.1
## 235                               Biopic     April 17, 2020     118        6.1
## 236                                Drama    January 8, 2021      96        6.1
## 237                                Drama      April 1, 2021     114        6.1
## 238                              Western  November 10, 2017      99        6.1
## 239                      Romantic comedy       May 22, 2020      87        6.1
## 240                               Biopic     March 24, 2017      92        6.1
## 241                      Horror-thriller       May 24, 2019      90        6.1
## 242                                Drama   January 15, 2021      95        6.1
## 243                             Thriller    August 28, 2020      96        6.1
## 244                         Dance comedy     August 7, 2020      93        6.1
## 245                          Stop Motion  November 20, 2020      42        6.2
## 246                               Biopic       May 26, 2021      92        6.2
## 247                                Drama   January 29, 2021     106        6.2
## 248                                Drama   November 6, 2020     151        6.2
## 249                         Comedy-drama    August 17, 2020     101        6.2
## 250                               Comedy      April 9, 2021     114        6.2
## 251                         Sports-drama   February 8, 2019      90        6.2
## 252                             Thriller September 27, 2019     115        6.2
## 253                             Thriller      June 19, 2020      92        6.2
## 254                            Animation    August 14, 2020      72        6.2
## 255                             Thriller      July 24, 2020     139        6.2
## 256                               Biopic     March 23, 2018      98        6.2
## 257                      Romantic comedy     April 19, 2019      92        6.2
## 258                        Action comedy      March 6, 2020     111        6.2
## 259                                Drama September 14, 2018      98        6.2
## 260                          Documentary     April 27, 2018     104        6.2
## 261                          Documentary   December 1, 2017      95        6.2
## 262                               Comedy      April 7, 2017      88        6.2
## 263                   Horror/Crime drama   October 20, 2017     102        6.3
## 264                          Documentary       May 22, 2019      30        6.3
## 265                      Romantic comedy       June 8, 2018      99        6.3
## 266                      Horror-thriller   October 12, 2018     129        6.3
## 267                          Family film     March 16, 2018      87        6.3
## 268                        Urban fantasy  December 22, 2017     117        6.3
## 269                         Drama/Horror       May 18, 2018     104        6.3
## 270                                Drama      April 2, 2021     111        6.3
## 271                  Family/Comedy-drama      June 19, 2020     107        6.3
## 272                               Comedy     March 18, 2021      97        6.3
## 273                      Romantic comedy     April 13, 2018      98        6.3
## 274                                Drama   January 28, 2021      90        6.3
## 275                                Drama     April 19, 2019     101        6.3
## 276                          Documentary       May 26, 2021      72        6.3
## 277                                Drama  November 24, 2020      83        6.3
## 278                               Action   January 25, 2019     118        6.3
## 279                               Comedy  December 21, 2018      44        6.3
## 280                                  War     April 21, 2017     113        6.3
## 281                       Crime thriller       June 9, 2017      86        6.3
## 282               Science fiction/Action   December 9, 2016     108        6.3
## 283                   Teen comedy horror   October 13, 2017      85        6.3
## 284                Science fiction/Drama     March 31, 2017     102        6.3
## 285                                Drama   October 11, 2019     151        6.3
## 286                         Comedy-drama   October 18, 2019      98        6.3
## 287                          Documentary     March 29, 2019      87        6.3
## 288                          Crime drama      March 9, 2018     120        6.3
## 289                             Thriller     April 23, 2020     134        6.3
## 290                      Romantic comedy  February 12, 2021     109        6.3
## 291                          Documentary    August 28, 2019      85        6.3
## 292                                Drama     March 27, 2020     103        6.3
## 293                          Documentary     August 5, 2020      94        6.4
## 294                         Concert Film  December 21, 2020      97        6.4
## 295             Science fiction/Thriller September 16, 2016      88        6.4
## 296                          Documentary September 25, 2019      37        6.4
## 297                       Musical comedy  December 24, 2019     112        6.4
## 298                         Sports-drama     March 30, 2018     102        6.4
## 299                             Thriller   October 11, 2019     100        6.4
## 300                                Drama  February 16, 2018      96        6.4
## 301                      Romantic comedy  February 14, 2020     113        6.4
## 302                          Documentary    August 20, 2020      16        6.4
## 303                       Romantic drama  February 11, 2021     119        6.4
## 304                          Documentary     April 29, 2020      97        6.4
## 305                          Documentary  December 13, 2014      81        6.4
## 306                         Comedy-drama September 21, 2018      98        6.4
## 307          Animation/Musical/Adventure   October 23, 2020      95        6.4
## 308                                Drama   October 12, 2019      96        6.4
## 309                          Documentary September 15. 2017     107        6.4
## 310                 Animation / Musicial September 27, 2019      41        6.4
## 311                          Documentary     March 16, 2018      87        6.4
## 312                         Comedy-drama   January 14, 2021     101        6.4
## 313                          Documentary        May 5, 2017      97        6.4
## 314                             Thriller     March 25, 2020     103        6.4
## 315           Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 316                      Action-thriller     March 13, 2019     125        6.4
## 317                          Documentary September 28, 2018     116        6.4
## 318                                Drama      March 8, 2019      99        6.4
## 319                      Action thriller   October 20, 2017      82        6.4
## 320                      Romantic comedy   February 9, 2018      97        6.4
## 321                          Documentary   October 28, 2019      28        6.5
## 322                              Romance  February 28, 2020     108        6.5
## 323                                Drama    August 28, 2020      93        6.5
## 324                Anime/Science fiction     March 19, 2020      74        6.5
## 325                          Documentary     March 21, 2019      60        6.5
## 326                    Animation / Short  December 11, 2020       9        6.5
## 327                          Documentary     April 17, 2021      21        6.5
## 328                               Comedy       May 31, 2019     100        6.5
## 329                            War drama      June 12, 2020     155        6.5
## 330                          Documentary      April 7, 2021      55        6.5
## 331                       Musical comedy      June 26, 2020     123        6.5
## 332                      Horror thriller September 29, 2017     103        6.5
## 333                             Thriller   October 30, 2020      93        6.5
## 334             Family/Christmas musical  November 13, 2020     119        6.5
## 335                          Documentary      June 14, 2019      40        6.5
## 336                                Drama      June 15, 2018     120        6.5
## 337                                Drama        May 7, 2021      98        6.5
## 338                            Adventure   December 7, 2018     104        6.5
## 339                                Drama      June 24, 2020      91        6.5
## 340                          Documentary      June 23, 2017      95        6.5
## 341             Science fiction thriller       May 12, 2021     101        6.5
## 342                      Romantic comedy      June 15, 2018     105        6.5
## 343                               Comedy      July 28, 2017      83        6.5
## 344                                Drama     April 10, 2020      91        6.5
## 345                              Romance     April 21, 2017      83        6.5
## 346                        Drama / Short   January 20, 2020      17        6.5
## 347           Hidden-camera prank comedy     March 26, 2021      86        6.6
## 348               Psychological thriller  December 21, 2018     124        6.6
## 349                               Horror      June 24, 2020      94        6.6
## 350                      Romantic comedy  February 26, 2021     102        6.6
## 351                              Romance       June 7, 2019     118        6.6
## 352                          Documentary    August 19, 2016      79        6.6
## 353               Psychological thriller  September 4, 2020     134        6.6
## 354                          Documentary   October 25, 2019     126        6.6
## 355                                Drama        May 7, 2021      98        6.6
## 356                          Documentary      June 29, 2018      89        6.6
## 357                          Documentary   December 7, 2018      58        6.6
## 358                          Documentary  November 23, 2020      83        6.6
## 359                      Science fiction   February 5, 2021     136        6.6
## 360                          Documentary   December 7, 2018      98        6.6
## 361                         Spy thriller September 14, 2018     114        6.6
## 362                          Crime drama    August 20, 2020      99        6.6
## 363                         Spy thriller      July 31, 2019     130        6.6
## 364                          Documentary   January 15, 2021      32        6.6
## 365                        Anime/Fantasy      June 18, 2020     104        6.7
## 366                                Drama     April 16, 2021     142        6.7
## 367              Animated musical comedy     April 16, 2021      92        6.7
## 368                          Documentary  November 20, 2019      86        6.7
## 369                Anime/Science fiction       May 20, 2017     106        6.7
## 370                                Drama       May 27, 2021      95        6.7
## 371                          Documentary      June 16, 2017      91        6.7
## 372                          Documentary   January 11, 2021      89        6.7
## 373                               Action     April 24, 2020     117        6.7
## 374                          Documentary  December 11, 2020      90        6.7
## 375                                Drama  November 24, 2020     117        6.7
## 376                          Documentary September 15, 2020      80        6.7
## 377                                Drama   February 3, 2017      87        6.7
## 378                               Comedy   December 3, 2020     101        6.7
## 379                          Documentary   October 28, 2019      19        6.7
## 380                       Romantic drama   February 5, 2021     106        6.7
## 381                         Variety Show   February 7, 2017      54        6.7
## 382                                Drama      March 3, 2021     111        6.7
## 383                                Drama      April 9, 2021     132        6.7
## 384                                Drama     March 12, 2021      97        6.7
## 385                          Documentary      July 10, 2019     106        6.7
## 386                         Comedy-drama      July 29, 2016     111        6.7
## 387                     Superhero/Action      July 10, 2020     124        6.7
## 388                          Documentary      July 15. 2016     116        6.7
## 389                                Drama   October 18, 2019     112        6.7
## 390                                Drama   October 10, 2018     144        6.8
## 391                                Drama   October 28, 2016      76        6.8
## 392                  Biographical/Comedy   January 26, 2018     101        6.8
## 393                          Documentary     March 20, 2020      92        6.8
## 394                          Documentary September 21, 2020      19        6.8
## 395                          Documentary        May 3, 2019      39        6.8
## 396                      Romantic comedy       May 31, 2019     102        6.8
## 397                          Documentary        May 6, 2020      89        6.8
## 398                               Comedy     August 3, 2018     105        6.8
## 399                             Thriller      June 29, 2018     101        6.8
## 400                               Comedy  December 27, 2020      70        6.8
## 401                          Documentary September 17, 2020      96        6.8
## 402                          Documentary       May 11, 2020      85        6.8
## 403                          Documentary September 12, 2017      39        6.8
## 404                          Documentary     April 20, 2018      79        6.8
## 405                          Documentary  November 21, 2017      73        6.8
## 406                                Drama    October 2, 2020     114        6.8
## 407                                Drama September 30, 2020     121        6.8
## 408                Aftershow / Interview September 30, 2020      28        6.8
## 409                                Drama  November 13, 2020      95        6.8
## 410                                Drama   November 2, 2018     122        6.8
## 411                          Documentary   February 9, 2018      23        6.8
## 412                                Drama      July 14, 2017     107        6.8
## 413                          Documentary    January 6, 2021      98        6.8
## 414                             Thriller  December 24, 2020     108        6.9
## 415                          Documentary September 30, 2016      92        6.9
## 416                          Documentary    October 8, 2020     100        6.9
## 417                          Documentary      March 1, 2021      97        6.9
## 418                    Animation / Short  December 28, 2020       7        6.9
## 419                                Drama  February 24, 2017      96        6.9
## 420                          Documentary       May 19, 2017     100        6.9
## 421                               Biopic   December 4, 2020     132        6.9
## 422                              Romance September 29, 2017     103        6.9
## 423                      Historical-epic   November 9, 2018     121        6.9
## 424                         Comedy-drama     March 26, 2021     114        6.9
## 425                          Documentary   October 12, 2018      57        6.9
## 426                          Documentary   February 9, 2018      95        6.9
## 427                          Documentary       June 3, 2020      83        6.9
## 428                          Documentary      July 10, 2020      17        6.9
## 429                              Romance        May 1, 2020     105        6.9
## 430                          Crime drama     March 29, 2019     131        6.9
## 431                     Comedy / Musical       May 23, 2019      30        6.9
## 432                         Comedy-drama   October 13, 2017     112        6.9
## 433                          Documentary   October 12, 2018      86        7.0
## 434                          Documentary September 22, 2017     100        7.0
## 435                Aftershow / Interview   November 3, 2020      14        7.0
## 436                          Documentary   October 13, 2017     109        7.0
## 437                          Documentary  November 20, 2019      28        7.0
## 438                          Documentary September 15, 2019      64        7.0
## 439                                Drama  December 18, 2020      94        7.0
## 440                Aftershow / Interview  December 18, 2020      31        7.0
## 441                          Documentary     March 17, 2021      99        7.0
## 442                          Documentary  February 23, 2021     108        7.0
## 443                          Documentary     April 26, 2019      48        7.0
## 444                          Documentary       May 17, 2019      84        7.0
## 445                          Documentary     March 22, 2019      70        7.0
## 446                          Documentary  September 1, 2017      27        7.0
## 447                   Animation / Comedy     August 9, 2019      45        7.0
## 448                               Comedy   December 9, 2020     117        7.0
## 449   Christmas/Fantasy/Adventure/Comedy  November 22, 2018     104        7.0
## 450                               Biopic     March 22, 2019     108        7.0
## 451                      Action-thriller   October 19, 2018     121        7.0
## 452                Aftershow / Interview   January 26, 2017      36        7.1
## 453                            Animation  November 30, 2018      30        7.1
## 454                            Animation   December 1, 2020      47        7.1
## 455                                Drama      June 19, 2019     110        7.1
## 456                          Documentary     April 22, 2020      92        7.1
## 457                          Documentary  November 27, 2020      80        7.1
## 458                    Mentalism special   October 19, 2018      49        7.1
## 459                          Documentary  December 27, 2019      73        7.1
## 460                          Documentary        May 4, 2018      40        7.1
## 461                          Documentary September 10, 2019      96        7.1
## 462                          Crime drama       May 14, 2021     106        7.1
## 463                          Documentary     April 20, 2019      97        7.1
## 464                          Documentary   October 27, 2020      94        7.1
## 465                          Documentary       May 26, 2017      78        7.1
## 466                          Documentary September 18, 2015      81        7.1
## 467                          Documentary        May 1, 2019      87        7.1
## 468                         One-man show  November 13, 2018      91        7.1
## 469                          Documentary     March 18, 2016      91        7.1
## 470                          Documentary   October 20, 2017      95        7.1
## 471                                Drama    January 7, 2021     126        7.1
## 472                          Documentary      April 6, 2018      31        7.1
## 473                          Documentary   November 2, 2018      58        7.1
## 474                          Documentary   October 15, 2020      41        7.1
## 475               Psychological thriller September 16, 2020     138        7.1
## 476                                Drama   January 29, 2021     112        7.1
## 477                          Documentary      July 24, 2019     114        7.1
## 478                                Drama   January 22, 2021     125        7.1
## 479                      Romantic comedy    August 17, 2018      99        7.1
## 480                          Documentary September 30, 2020      82        7.2
## 481                          Documentary September 23, 2016      98        7.2
## 482                                Drama September 15, 2017     136        7.2
## 483                          Documentary   January 18, 2019      97        7.2
## 484                          Documentary   October 28, 2016     107        7.2
## 485                          Documentary     April 10, 2020      92        7.2
## 486                          Documentary      March 8, 2018      39        7.2
## 487                      Romantic comedy  February 14, 2018     133        7.2
## 488                         Drama-Comedy  February 22, 2019      89        7.2
## 489                                Drama    October 5, 2018     124        7.2
## 490           Coming-of-age comedy-drama   October 18, 2019      99        7.2
## 491                                Drama        May 1, 2018     101        7.2
## 492                          Crime drama   January 18, 2019      97        7.2
## 493                               Comedy    October 9, 2020     124        7.2
## 494                                Drama     April 30, 2021     129        7.2
## 495                          Documentary      June 19, 2019     121        7.2
## 496                     Historical drama   November 1, 2019     140        7.2
## 497                            Making-of   October 29, 2019      13        7.2
## 498                                  War    October 7, 2016     108        7.2
## 499                          Documentary    August 10, 2018      11        7.2
## 500                               Biopic   October 25, 2019     118        7.3
## 501                          Crime drama   October 11, 2019     121        7.3
## 502                          Documentary September 13, 2016      24        7.3
## 503                          Documentary      July 17, 2020     100        7.3
## 504                          Documentary       May 12, 2017     101        7.3
## 505                                Drama       May 27, 2020     105        7.3
## 506                          Documentary       July 8, 2020      96        7.3
## 507                            Animation   October 13, 2020      47        7.3
## 508                     Action-adventure      June 28, 2017     121        7.3
## 509                          Crime drama September 12, 2018     100        7.3
## 510                             Thriller      July 31, 2020     149        7.3
## 511                          Documentary   January 11, 2019      64        7.3
## 512                          Documentary   February 8, 2019      64        7.3
## 513                          Documentary   October 28, 2020     114        7.3
## 514                    Animation / Short      March 8, 2020      15        7.3
## 515                          Documentary   October 14, 2016      79        7.3
## 516                          Documentary     April 29, 2016      90        7.3
## 517                              Western  November 16, 2018     132        7.3
## 518                          Documentary    October 6, 2017     105        7.3
## 519                         Comedy-drama      June 24, 2016      97        7.3
## 520                          Documentary       May 22, 2015      83        7.3
## 521                          Documentary    August 21, 2019     110        7.4
## 522                          Documentary   November 1, 2019      39        7.4
## 523                          Documentary September 29, 2017      40        7.4
## 524                          Documentary   January 31, 2020      85        7.4
## 525                          Documentary  February 12, 2019      26        7.4
## 526                         Concert Film  November 25, 2020      87        7.4
## 527                          Documentary   October 26, 2018      97        7.4
## 528                          Documentary       June 7, 2019     118        7.4
## 529                Aftershow / Interview  November 27, 2019      23        7.4
## 530                          Documentary      July 29, 2020      40        7.4
## 531                          Documentary   November 2, 2018      98        7.4
## 532                          Documentary      July 17, 2015      80        7.4
## 533                         Concert Film  November 22, 2017     108        7.5
## 534                          Documentary   October 14, 2020      79        7.5
## 535                          Documentary  September 7, 2018      74        7.5
## 536                          Documentary    October 2, 2020      90        7.5
## 537                          Documentary     April 17, 2019     137        7.5
## 538          Animation / Science Fiction    August 16, 2019      71        7.5
## 539                          Documentary   October 27. 2017      98        7.5
## 540                         Variety show  December 24, 2019      70        7.5
## 541                          Documentary September 13, 2018      99        7.5
## 542                          Documentary September 16. 2016      40        7.5
## 543                          Documentary      June 24, 2020     104        7.6
## 544                Anthology/Dark comedy  November 12, 2020     149        7.6
## 545                          Documentary September 21, 2018     124        7.6
## 546                          Documentary      June 12, 2019     144        7.6
## 547                          Documentary   October 18, 2019      85        7.6
## 548                          Documentary      July 27, 2018     100        7.6
## 549                          Documentary  September 9, 2020      94        7.6
## 550                                Drama  December 20, 2019     125        7.6
## 551                          Documentary      June 26, 2015      84        7.6
## 552                                Drama  February 21, 2020     117        7.6
## 553                      Musical / Short      June 27, 2019      15        7.7
## 554                            War drama   October 16, 2015     136        7.7
## 555                          Documentary     April 19, 2019      76        7.7
## 556                          Documentary     March 25, 2020     108        7.7
## 557                          Documentary  November 17, 2017      94        7.7
## 558                         Concert Film   October 12, 2016      90        7.7
## 559                            Making-of  February 11, 2020      72        7.7
## 560                                Drama  December 14, 2018     135        7.7
## 561                    Animation / Short  November 20, 2020      12        7.8
## 562                          Crime drama  November 27, 2019     209        7.8
## 563                                Drama   October 16, 2020     130        7.8
## 564                          Documentary     April 29, 2020      82        7.9
## 565                          Documentary     August 4, 2017     120        7.9
## 566                                Drama   December 6, 2019     136        7.9
## 567                          Documentary   November 4, 2016     112        7.9
## 568                          Documentary  December 21, 2018     105        8.0
## 569                          Documentary      July 14, 2017      89        8.1
## 570                          Documentary  September 7, 2020      85        8.1
## 571                          Documentary    August 26, 2020     106        8.1
## 572                          Documentary    October 7, 2016     100        8.2
## 573                          Documentary      June 19, 2020     107        8.2
## 574 Animation/Christmas/Comedy/Adventure  November 15, 2019      97        8.2
## 575                          Documentary     March 24, 2021      89        8.2
## 576                          Documentary   October 14, 2020     109        8.2
## 577                          Documentary  November 24, 2017     114        8.3
## 578                          Documentary   October 23, 2019      51        8.3
## 579                         Concert Film       May 20, 2020      85        8.4
## 580                         Concert Film  December 31, 2018     125        8.4
## 581                          Documentary    October 9, 2015      91        8.4
## 582                         One-man show  December 16, 2018     153        8.5
## 583                          Documentary   December 8, 2020      89        8.6
## 584                          Documentary    October 4, 2020      83        9.0
##                       Language "Runtime" 2
## 1             English/Japanese   Runtime 2
## 2                      Spanish   Runtime 2
## 3                      Italian   Runtime 2
## 4                      English   Runtime 2
## 5                        Hindi   Runtime 2
## 6                        Hindi   Runtime 2
## 7                      Turkish   Runtime 2
## 8                      English   Runtime 2
## 9                      English   Runtime 2
## 10                       Hindi   Runtime 2
## 11                     English   Runtime 2
## 12                      Korean   Runtime 2
## 13                  Indonesian   Runtime 2
## 14                       Malay   Runtime 2
## 15                     English   Runtime 2
## 16                     Spanish   Runtime 2
## 17                       Hindi   Runtime 2
## 18                     English   Runtime 2
## 19                      Korean   Runtime 2
## 20                     English   Runtime 2
## 21                     English   Runtime 2
## 22                     English   Runtime 2
## 23                     English   Runtime 2
## 24                       Hindi   Runtime 2
## 25                     English   Runtime 2
## 26                     English   Runtime 2
## 27                       Dutch   Runtime 2
## 28                     English   Runtime 2
## 29                      French   Runtime 2
## 30                     Italian   Runtime 2
## 31             English/Spanish   Runtime 2
## 32                     English   Runtime 2
## 33                      French   Runtime 2
## 34                  Portuguese   Runtime 2
## 35                     English   Runtime 2
## 36                     Italian   Runtime 2
## 37                      French   Runtime 2
## 38                    Filipino   Runtime 2
## 39                     English   Runtime 2
## 40                      French   Runtime 2
## 41                     English   Runtime 2
## 42                     Italian   Runtime 2
## 43                     English   Runtime 2
## 44                      German   Runtime 2
## 45                     English   Runtime 2
## 46                       Hindi   Runtime 2
## 47                      Polish   Runtime 2
## 48                     English   Runtime 2
## 49                     English   Runtime 2
## 50                     English   Runtime 2
## 51                      French   Runtime 2
## 52                     English   Runtime 2
## 53                     English   Runtime 2
## 54                     Spanish   Runtime 2
## 55                  Portuguese   Runtime 2
## 56                     English   Runtime 2
## 57                  Indonesian   Runtime 2
## 58                     English   Runtime 2
## 59                      Polish   Runtime 2
## 60                   Norwegian   Runtime 2
## 61                     English   Runtime 2
## 62                     English   Runtime 2
## 63                     English   Runtime 2
## 64                  Indonesian   Runtime 2
## 65                     English   Runtime 2
## 66                     English   Runtime 2
## 67                     English   Runtime 2
## 68                     English   Runtime 2
## 69                     English   Runtime 2
## 70                     English   Runtime 2
## 71                     Marathi   Runtime 2
## 72                        Thai   Runtime 2
## 73                     English   Runtime 2
## 74                     English   Runtime 2
## 75                     English   Runtime 2
## 76                     English   Runtime 2
## 77                     English   Runtime 2
## 78                     English   Runtime 2
## 79                     English   Runtime 2
## 80                     English   Runtime 2
## 81                     English   Runtime 2
## 82                     English   Runtime 2
## 83                     Italian   Runtime 2
## 84                     English   Runtime 2
## 85                     English   Runtime 2
## 86                      French   Runtime 2
## 87                     English   Runtime 2
## 88                       Hindi   Runtime 2
## 89                     Spanish   Runtime 2
## 90                      French   Runtime 2
## 91                     English   Runtime 2
## 92                      French   Runtime 2
## 93                     Spanish   Runtime 2
## 94                     English   Runtime 2
## 95                     English   Runtime 2
## 96                     English   Runtime 2
## 97                     Spanish   Runtime 2
## 98                       Hindi   Runtime 2
## 99                      German   Runtime 2
## 100                    English   Runtime 2
## 101                      Hindi   Runtime 2
## 102                    English   Runtime 2
## 103                     French   Runtime 2
## 104                    English   Runtime 2
## 105                    English   Runtime 2
## 106                    English   Runtime 2
## 107                    Italian   Runtime 2
## 108                    English   Runtime 2
## 109                    English   Runtime 2
## 110                   Filipino   Runtime 2
## 111                 Portuguese   Runtime 2
## 112                    English   Runtime 2
## 113                      Hindi   Runtime 2
## 114                    English   Runtime 2
## 115                    English   Runtime 2
## 116                    English   Runtime 2
## 117                    English   Runtime 2
## 118                    Swedish   Runtime 2
## 119                   Japanese   Runtime 2
## 120                    English   Runtime 2
## 121                    English   Runtime 2
## 122                    English   Runtime 2
## 123                    English   Runtime 2
## 124                    English   Runtime 2
## 125                    English   Runtime 2
## 126                    English   Runtime 2
## 127             Spanish/Basque   Runtime 2
## 128                    English   Runtime 2
## 129                 Portuguese   Runtime 2
## 130                    English   Runtime 2
## 131                    English   Runtime 2
## 132                    English   Runtime 2
## 133                    Turkish   Runtime 2
## 134                    English   Runtime 2
## 135                    English   Runtime 2
## 136                    Italian   Runtime 2
## 137                    English   Runtime 2
## 138                    Spanish   Runtime 2
## 139                    English   Runtime 2
## 140                    English   Runtime 2
## 141                    English   Runtime 2
## 142                    English   Runtime 2
## 143                    Italian   Runtime 2
## 144                    English   Runtime 2
## 145                    Spanish   Runtime 2
## 146                    English   Runtime 2
## 147                    English   Runtime 2
## 148                      Hindi   Runtime 2
## 149                    English   Runtime 2
## 150                    English   Runtime 2
## 151                    English   Runtime 2
## 152                       Thai   Runtime 2
## 153                    English   Runtime 2
## 154                    English   Runtime 2
## 155                     Polish   Runtime 2
## 156                    English   Runtime 2
## 157                    English   Runtime 2
## 158                    English   Runtime 2
## 159                    English   Runtime 2
## 160                    English   Runtime 2
## 161                    English   Runtime 2
## 162                    Marathi   Runtime 2
## 163                    English   Runtime 2
## 164                    English   Runtime 2
## 165                    English   Runtime 2
## 166                    English   Runtime 2
## 167                    English   Runtime 2
## 168                    English   Runtime 2
## 169                      Hindi   Runtime 2
## 170                      Hindi   Runtime 2
## 171                    English   Runtime 2
## 172                    English   Runtime 2
## 173                    English   Runtime 2
## 174                    English   Runtime 2
## 175                    English   Runtime 2
## 176                    English   Runtime 2
## 177                      Hindi   Runtime 2
## 178                 Portuguese   Runtime 2
## 179                     German   Runtime 2
## 180                    English   Runtime 2
## 181                    English   Runtime 2
## 182                    English   Runtime 2
## 183                    English   Runtime 2
## 184                    English   Runtime 2
## 185                    English   Runtime 2
## 186                    English   Runtime 2
## 187                      Dutch   Runtime 2
## 188                    English   Runtime 2
## 189                    English   Runtime 2
## 190                     German   Runtime 2
## 191                    Spanish   Runtime 2
## 192                    English   Runtime 2
## 193                    English   Runtime 2
## 194                    English   Runtime 2
## 195                    English   Runtime 2
## 196                    English   Runtime 2
## 197                    English   Runtime 2
## 198                    English   Runtime 2
## 199                    English   Runtime 2
## 200                    English   Runtime 2
## 201                      Hindi   Runtime 2
## 202                     French   Runtime 2
## 203                    English   Runtime 2
## 204                    English   Runtime 2
## 205                    English   Runtime 2
## 206                    English   Runtime 2
## 207                    Italian   Runtime 2
## 208                    English   Runtime 2
## 209                    Italian   Runtime 2
## 210                    English   Runtime 2
## 211                      Hindi   Runtime 2
## 212                    English   Runtime 2
## 213                    English   Runtime 2
## 214                    English   Runtime 2
## 215                    English   Runtime 2
## 216                    English   Runtime 2
## 217                    English   Runtime 2
## 218                    English   Runtime 2
## 219                    English   Runtime 2
## 220                    English   Runtime 2
## 221                    English   Runtime 2
## 222                    English   Runtime 2
## 223                    English   Runtime 2
## 224                    English   Runtime 2
## 225                    English   Runtime 2
## 226                    English   Runtime 2
## 227                    English   Runtime 2
## 228                    English   Runtime 2
## 229                    English   Runtime 2
## 230                    English   Runtime 2
## 231                    English   Runtime 2
## 232                    English   Runtime 2
## 233                    English   Runtime 2
## 234                     French   Runtime 2
## 235                    English   Runtime 2
## 236                    Turkish   Runtime 2
## 237                 Indonesian   Runtime 2
## 238                 Portuguese   Runtime 2
## 239                    English   Runtime 2
## 240                    English   Runtime 2
## 241                    English   Runtime 2
## 242                      Hindi   Runtime 2
## 243                    Spanish   Runtime 2
## 244                    English   Runtime 2
## 245                    English   Runtime 2
## 246                    Italian   Runtime 2
## 247                    Spanish   Runtime 2
## 248                    English   Runtime 2
## 249                 Indonesian   Runtime 2
## 250                    Turkish   Runtime 2
## 251                    English   Runtime 2
## 252                    English   Runtime 2
## 253                     French   Runtime 2
## 254                    English   Runtime 2
## 255                    Spanish   Runtime 2
## 256                    English   Runtime 2
## 257                    English   Runtime 2
## 258                    English   Runtime 2
## 259                    English   Runtime 2
## 260                    English   Runtime 2
## 261                    English   Runtime 2
## 262                    English   Runtime 2
## 263                    English   Runtime 2
## 264            English/Spanish   Runtime 2
## 265                    English   Runtime 2
## 266                    English   Runtime 2
## 267                    English   Runtime 2
## 268                    English   Runtime 2
## 269                    English   Runtime 2
## 270                    English   Runtime 2
## 271                    English   Runtime 2
## 272                 Portuguese   Runtime 2
## 273                     French   Runtime 2
## 274                 Indonesian   Runtime 2
## 275                      Hindi   Runtime 2
## 276                    English   Runtime 2
## 277                    Spanish   Runtime 2
## 278                    English   Runtime 2
## 279                 Portuguese   Runtime 2
## 280                    English   Runtime 2
## 281                    English   Runtime 2
## 282                    English   Runtime 2
## 283                    English   Runtime 2
## 284                    English   Runtime 2
## 285                   Japanese   Runtime 2
## 286                    English   Runtime 2
## 287                    English   Runtime 2
## 288           English/Japanese   Runtime 2
## 289                     Korean   Runtime 2
## 290                    English   Runtime 2
## 291                    English   Runtime 2
## 292                    English   Runtime 2
## 293                     French   Runtime 2
## 294                    English   Runtime 2
## 295                    English   Runtime 2
## 296            English/Spanish   Runtime 2
## 297                    Spanish   Runtime 2
## 298                    English   Runtime 2
## 299                    English   Runtime 2
## 300                    English   Runtime 2
## 301                     German   Runtime 2
## 302                    English   Runtime 2
## 303                 Indonesian   Runtime 2
## 304                    English   Runtime 2
## 305                    English   Runtime 2
## 306                    English   Runtime 2
## 307                    English   Runtime 2
## 308                     French   Runtime 2
## 309                    English   Runtime 2
## 310                    English   Runtime 2
## 311                    English   Runtime 2
## 312                 Indonesian   Runtime 2
## 313                    English   Runtime 2
## 314                    Spanish   Runtime 2
## 315                    English   Runtime 2
## 316                    English   Runtime 2
## 317            Spanish/Catalan   Runtime 2
## 318                    English   Runtime 2
## 319                    English   Runtime 2
## 320                    English   Runtime 2
## 321            English/Spanish   Runtime 2
## 322                    English   Runtime 2
## 323                    English   Runtime 2
## 324                   Japanese   Runtime 2
## 325                     French   Runtime 2
## 326                    English   Runtime 2
## 327                    English   Runtime 2
## 328                      Hindi   Runtime 2
## 329                    English   Runtime 2
## 330                    English   Runtime 2
## 331                    English   Runtime 2
## 332                    English   Runtime 2
## 333                    English   Runtime 2
## 334                    English   Runtime 2
## 335            English/Swedish   Runtime 2
## 336                      Hindi   Runtime 2
## 337                    English   Runtime 2
## 338                    English   Runtime 2
## 339                    Spanish   Runtime 2
## 340                    English   Runtime 2
## 341                     French   Runtime 2
## 342                    English   Runtime 2
## 343                    English   Runtime 2
## 344 English/Taiwanese/Mandarin   Runtime 2
## 345                    English   Runtime 2
## 346                    English   Runtime 2
## 347                    English   Runtime 2
## 348                    English   Runtime 2
## 349                      Hindi   Runtime 2
## 350                    Spanish   Runtime 2
## 351                    Spanish   Runtime 2
## 352                    English   Runtime 2
## 353                    English   Runtime 2
## 354                    English   Runtime 2
## 355                      Hindi   Runtime 2
## 356                    English   Runtime 2
## 357                    English   Runtime 2
## 358                    English   Runtime 2
## 359                     Korean   Runtime 2
## 360                    English   Runtime 2
## 361                    English   Runtime 2
## 362                    Spanish   Runtime 2
## 363                    English   Runtime 2
## 364                    English   Runtime 2
## 365                   Japanese   Runtime 2
## 366                      Hindi   Runtime 2
## 367                    English   Runtime 2
## 368                    English   Runtime 2
## 369                   Japanese   Runtime 2
## 370                    English   Runtime 2
## 371                    English   Runtime 2
## 372                    English   Runtime 2
## 373                    English   Runtime 2
## 374                    English   Runtime 2
## 375                    English   Runtime 2
## 376               Thia/English   Runtime 2
## 377                    English   Runtime 2
## 378                 Portuguese   Runtime 2
## 379                   Japanese   Runtime 2
## 380                    English   Runtime 2
## 381                    English   Runtime 2
## 382                    English   Runtime 2
## 383                     Korean   Runtime 2
## 384                    Turkish   Runtime 2
## 385                    Spanish   Runtime 2
## 386                    English   Runtime 2
## 387                    English   Runtime 2
## 388                    English   Runtime 2
## 389                      Hindi   Runtime 2
## 390                    English   Runtime 2
## 391                    Spanish   Runtime 2
## 392                    English   Runtime 2
## 393                    Spanish   Runtime 2
## 394                    English   Runtime 2
## 395           English/Mandarin   Runtime 2
## 396                    English   Runtime 2
## 397                    English   Runtime 2
## 398                      Hindi   Runtime 2
## 399                    English   Runtime 2
## 400                    English   Runtime 2
## 401                     French   Runtime 2
## 402                    English   Runtime 2
## 403                    English   Runtime 2
## 404                    English   Runtime 2
## 405                    English   Runtime 2
## 406                      Hindi   Runtime 2
## 407                    English   Runtime 2
## 408                    English   Runtime 2
## 409                    Italian   Runtime 2
## 410                    English   Runtime 2
## 411                   Georgian   Runtime 2
## 412                    English   Runtime 2
## 413                     French   Runtime 2
## 414                      Hindi   Runtime 2
## 415                    English   Runtime 2
## 416                     French   Runtime 2
## 417                    English   Runtime 2
## 418                    English   Runtime 2
## 419                    English   Runtime 2
## 420                 Portuguese   Runtime 2
## 421                    English   Runtime 2
## 422                    English   Runtime 2
## 423                    English   Runtime 2
## 424                      Hindi   Runtime 2
## 425                    English   Runtime 2
## 426                    English   Runtime 2
## 427                    English   Runtime 2
## 428                    English   Runtime 2
## 429                    English   Runtime 2
## 430                    English   Runtime 2
## 431                    English   Runtime 2
## 432                    English   Runtime 2
## 433                    English   Runtime 2
## 434                    English   Runtime 2
## 435                    English   Runtime 2
## 436                    English   Runtime 2
## 437                    Spanish   Runtime 2
## 438                    Spanish   Runtime 2
## 439                    English   Runtime 2
## 440                    English   Runtime 2
## 441                    English   Runtime 2
## 442                    English   Runtime 2
## 443                    English   Runtime 2
## 444                    English   Runtime 2
## 445                    English   Runtime 2
## 446                    English   Runtime 2
## 447                    English   Runtime 2
## 448                    Italian   Runtime 2
## 449                    English   Runtime 2
## 450                    English   Runtime 2
## 451                 Indonesian   Runtime 2
## 452                    English   Runtime 2
## 453                    English   Runtime 2
## 454                    English   Runtime 2
## 455                    English   Runtime 2
## 456                    English   Runtime 2
## 457                    English   Runtime 2
## 458                    English   Runtime 2
## 459                    Spanish   Runtime 2
## 460                    English   Runtime 2
## 461                    English   Runtime 2
## 462                      Dutch   Runtime 2
## 463                    English   Runtime 2
## 464                    Spanish   Runtime 2
## 465                    English   Runtime 2
## 466                    English   Runtime 2
## 467                    English   Runtime 2
## 468                    English   Runtime 2
## 469                    English   Runtime 2
## 470                    English   Runtime 2
## 471                    English   Runtime 2
## 472                    English   Runtime 2
## 473                    English   Runtime 2
## 474                    Bengali   Runtime 2
## 475                    English   Runtime 2
## 476                    English   Runtime 2
## 477                    English   Runtime 2
## 478                    English   Runtime 2
## 479                    English   Runtime 2
## 480                    English   Runtime 2
## 481                    English   Runtime 2
## 482       Khmer/English/French   Runtime 2
## 483                    English   Runtime 2
## 484                    English   Runtime 2
## 485                    English   Runtime 2
## 486              English/Hindi   Runtime 2
## 487                      Hindi   Runtime 2
## 488                    English   Runtime 2
## 489                    English   Runtime 2
## 490                    Spanish   Runtime 2
## 491                      Tamil   Runtime 2
## 492                      Hindi   Runtime 2
## 493                    English   Runtime 2
## 494                    Marathi   Runtime 2
## 495                 Portuguese   Runtime 2
## 496                    English   Runtime 2
## 497                    English   Runtime 2
## 498                    English   Runtime 2
## 499                    English   Runtime 2
## 500                    English   Runtime 2
## 501                    English   Runtime 2
## 502                    English   Runtime 2
## 503                    English   Runtime 2
## 504                    English   Runtime 2
## 505                    Spanish   Runtime 2
## 506            Spanish/English   Runtime 2
## 507                    English   Runtime 2
## 508             English/Korean   Runtime 2
## 509                    Italian   Runtime 2
## 510                      Hindi   Runtime 2
## 511            English/Spanish   Runtime 2
## 512                    English   Runtime 2
## 513             English/Arabic   Runtime 2
## 514                    English   Runtime 2
## 515           English/Mandarin   Runtime 2
## 516            English/Russian   Runtime 2
## 517                    English   Runtime 2
## 518                    English   Runtime 2
## 519                    English   Runtime 2
## 520                    English   Runtime 2
## 521                    English   Runtime 2
## 522                    English   Runtime 2
## 523                    English   Runtime 2
## 524                    English   Runtime 2
## 525              English/Hindi   Runtime 2
## 526                    English   Runtime 2
## 527                    English   Runtime 2
## 528                    English   Runtime 2
## 529                    English   Runtime 2
## 530                    English   Runtime 2
## 531                    English   Runtime 2
## 532                    English   Runtime 2
## 533                    English   Runtime 2
## 534                     Korean   Runtime 2
## 535                    English   Runtime 2
## 536                    English   Runtime 2
## 537                    English   Runtime 2
## 538                    English   Runtime 2
## 539                    English   Runtime 2
## 540                    English   Runtime 2
## 541                    English   Runtime 2
## 542                    English   Runtime 2
## 543                    English   Runtime 2
## 544                      Hindi   Runtime 2
## 545                    English   Runtime 2
## 546                    English   Runtime 2
## 547                    English   Runtime 2
## 548                    English   Runtime 2
## 549                    English   Runtime 2
## 550                    English   Runtime 2
## 551                    English   Runtime 2
## 552                      Hindi   Runtime 2
## 553                    English   Runtime 2
## 554               English/Akan   Runtime 2
## 555                    English   Runtime 2
## 556                    English   Runtime 2
## 557                    English   Runtime 2
## 558                    English   Runtime 2
## 559                    Spanish   Runtime 2
## 560                    Spanish   Runtime 2
## 561                    English   Runtime 2
## 562                    English   Runtime 2
## 563                    English   Runtime 2
## 564                    English   Runtime 2
## 565                    English   Runtime 2
## 566                    English   Runtime 2
## 567                    English   Runtime 2
## 568                    English   Runtime 2
## 569                    English   Runtime 2
## 570                    English   Runtime 2
## 571                    English   Runtime 2
## 572                    English   Runtime 2
## 573                    English   Runtime 2
## 574                    English   Runtime 2
## 575                    English   Runtime 2
## 576                    Spanish   Runtime 2
## 577                    English   Runtime 2
## 578                    English   Runtime 2
## 579                    English   Runtime 2
## 580                    English   Runtime 2
## 581   English/Ukranian/Russian   Runtime 2
## 582                    English   Runtime 2
## 583                 Portuguese   Runtime 2
## 584                    English   Runtime 2
mutate(df, "IMDB.Score", 2)
##                                                                                                          Title
## 1                                                                                              Enter the Anime
## 2                                                                                                  Dark Forces
## 3                                                                                                      The App
## 4                                                                                               The Open House
## 5                                                                                                  Kaali Khuhi
## 6                                                                                                        Drive
## 7                                                                                            Leyla Everlasting
## 8                                                                              The Last Days of American Crime
## 9                                                                                                      Paradox
## 10                                                                                          Sardar Ka Grandson
## 11                                                                                        Searching for Sheela
## 12                                                                                                    The Call
## 13                                                                                                     Whipped
## 14                                                                                          All Because of You
## 15                                                                                                       Mercy
## 16                                                                                              After the Raid
## 17                                                                                               Ghost Stories
## 18                                                                                    The Last Thing He Wanted
## 19                                                                                   What Happened to Mr. Cha?
## 20                                                                                                  Death Note
## 21                                                                           Hello Privilege. It's Me, Chelsea
## 22                                                                                            Secret Obsession
## 23                                                                                                  Sextuplets
## 24                                                                                       The Girl on the Train
## 25                                                                                               Thunder Force
## 26                                                                                                Fatal Affair
## 27                                                                                                Just Say Yes
## 28                                                                                            Seriously Single
## 29                                                                       The Misadventures of Hedi and Cokeman
## 30                                                                                            5 Star Christmas
## 31                                                                                                 After Maria
## 32                                                               I Am the Pretty Thing That Lives in the House
## 33                                                                                                 Paris Is Us
## 34                                                            Porta dos Fundos: The First Temptation of Christ
## 35                                                                                                 Rattlesnake
## 36                                                                                                 The Players
## 37                                                                                                  We Are One
## 38                                                                                               Finding Agnes
## 39                                                                                                          IO
## 40                                                                                                  Sentinelle
## 41                                                                                                 Sol Levante
## 42                                                                                                 The Binding
## 43                                                                                            We Can Be Heroes
## 44                                                                                         Christmas Crossfire
## 45                                                                                                  Coin Heist
## 46                                                                                          Mrs. Serial Killer
## 47                                                                          Nobody Sleeps in the Woods Tonight
## 48                                                                                                 Take the 10
## 49                                                                                              The Main Event
## 50                                                                                            The Ridiculous 6
## 51                                                                                             Earth and Blood
## 52                                                                                                    Fearless
## 53                                                                                                Holiday Rush
## 54                                                                                         The Day of the Lord
## 55                                                                                               Airplane Mode
## 56                                                                                                 How It Ends
## 57                                                                                  Love Like the Falling Rain
## 58                                                                                                     Rebirth
## 59                                                                                                Squared Love
## 60                                                                                                     Cadaver
## 61                                                                                                    Clinical
## 62                                                                                             Coffee & Kareem
## 63                                                                                                        Dude
## 64                                                                                                  Geez & Ann
## 65                                                                                      The Larva Island Movie
## 66                                                                                                #REALITYHIGH
## 67                                                           American Factory: A Conversation with the Obamas 
## 68                                                                                                  Desperados
## 69                                                                      Dolly Parton's Christmas on the Square
## 70                                                                                          Father of the Year
## 71                                                                                                   Firebrand
## 72                                                                                                   Ghost Lab
## 73                                                                                            Girlfriend's Day
## 74                                                                           Handsome: A Netflix Mystery Movie
## 75                                                                                             Hubie Halloween
## 76                                                                                                       Ibiza
## 77                                                                                            Rim of the World
## 78                                                                                                Sandy Wexler
## 79                                                                                           See You Yesterday
## 80                                                                         Still Laugh-In: The Stars Celebrate
## 81                                                                                         Strip Down, Rise Up
## 82                                                                                                   Tall Girl
## 83                                                                                                   The Beast
## 84                                                                                                 The Week Of
## 85                                                                       A Christmas Prince: The Royal Wedding
## 86                                                                                              Back to School
## 87                                                                                              Dangerous Lies
## 88                                                                              Gunjan Saxena: The Kargil Girl
## 89                                                                                                   Intuition
## 90                                                                    The Most Assassinated Woman in the World
## 91                                                                                         Things Heard & Seen
## 92                                                                                            To Each, Her Own
## 93                                                                    Who Would You Take to a Deserted Island?
## 94                                                                                                        XOXO
## 95                                                                     A Babysitter's Guide to Monster Hunting
## 96                                                                          A Christmas Prince: The Royal Baby
## 97                                                                                          Despite Everything
## 98                                                                       Dolly Kitty and Those Twinkling Stars
## 99                                                                                    Freaks: You're One of Us
## 100                                                                                            Game Over, Man!
## 101                                                                                                     Guilty
## 102                                                                                          In the Tall Grass
## 103                                                                                              Madame Claude
## 104                                                                                                      Naked
## 105                                                                                           Outside the Wire
## 106                                                                        The Princess Switch: Switched Again
## 107                                                                                     Under the Riccione Sun
## 108                                                                                    A Very Murray Christmas
## 109                                                                                               Been So Long
## 110                                                                                                  Dead Kids
## 111                                                                                              Get the Grift
## 112                                                                                       Ghosts of Sugar Land
## 113                                                                                               House Arrest
## 114                                                                        Kevin Hart's Guide to Black History
## 115                                                                                        Love Wedding Repeat
## 116                                                                                                       Mute
## 117                                                                                                    Òlòt?ré
## 118                                                                                                    Red Dot
## 119                                                                                                Ride or Die
## 120                                                                                               Step Sisters
## 121                                                                                    The Cloverfield Paradox
## 122                                                                                The Knight Before Christmas
## 123                                                                      The Legacy of a Whitetail Deer Hunter
## 124                                                                                                The Package
## 125                                                                                              Unicorn Store
## 126                                                                                               Wine Country
## 127                                                                                                Bomb Scared
## 128                                                                                              Brahman Naman
## 129                                                                                                 Double Dad
## 130                                                                                           Falling Inn Love
## 131                                                                                              Hold the Dark
## 132                                                                                           Love, Guaranteed
## 133                                                                                        One-Way to Tomorrow
## 134                                                                            Sarah Cooper: Everything's Fine
## 135                                                                                             The Last Laugh
## 136                                                                                          The Last Paradiso
## 137                                                                                           The Midnight Sky
## 138                                                                                              The Paramedic
## 139                                                                                              The Sleepover
## 140                                                                                     Vampires vs. the Bronx
## 141                                                                                       Why Did You Kill Me?
## 142                                                                                                A Week Away
## 143                                                                                           Caught by a Wave
## 144                                                                                      Christmas Inheritance
## 145                                                                                                 Dad Wanted
## 146                                                                                        El Camino Christmas
## 147                                                                                                        Eli
## 148                                                                                           Ginny Weds Sunny
## 149                                                                                                   Good Sam
## 150                                                                                                  Lionheart
## 151                                                                                                Little Evil
## 152                                                                                                   One Take
## 153                                                                                           Out of Many, One
## 154                                                                                                Point Blank
## 155                                                                                                 Prime Time
## 156                                                                                                The Do-Over
## 157                                                                                       The Holiday Calendar
## 158                                                                                    The Woman in the Window
## 159                                                                                            The Wrong Missy
## 160                                                                                             Velvet Buzzsaw
## 161                                                                                                    Yes Day
## 162                                                                                                  15 August
## 163                                                                                     A California Christmas
## 164                                                                                         A Christmas Prince
## 165                                                                                        All Day and a Night
## 166                                                                                               American Son
## 167                                                                                                      Barry
## 168                                                                                                  Candy Jar
## 169                                                                                    Choked: Paisa Bolta Hai
## 170                                                                                               Class of '83
## 171                                                                                                 Extinction
## 172                                                                                          Happy Anniversary
## 173                                                                                             I Am All Girls
## 174                                                                                                Let It Snow
## 175                                                                                                    Mascots
## 176                                                                                   Operation Christmas Drop
## 177                                                                                               Rajma Chawal
## 178                                                                                               Rich in Love
## 179                                                                                                Rising High
## 180                                                                                                Rodney King
## 181                                                                                  Sierra Burgess Is a Loser
## 182                                                                                               Small Crimes
## 183                                                                                     Special Correspondents
## 184                                                                                                        TAU
## 185                                                                                            The After Party
## 186                                                                               The Babysitter: Killer Queen
## 187                                                                                           The Claus Family
## 188                                                                                        The Kissing Booth 2
## 189                                                                                           The Perfect Date
## 190                                                                                             What We Wanted
## 191                                                                                            You've Got This
## 192                                                                                                 6 Balloons
## 193                                                                                          A Fall from Grace
## 194                                                                                                    Amateur
## 195                                                                                           Army of the Dead
## 196                                                                                                        Cam
## 197                                                                                            Earthquake Bird
## 198                                                             Frankenstein's Monster's Monster, Frankenstein
## 199                                                                                                 Horse Girl
## 200                                                         Notes from Dunblane: Lesson from a School Shooting
## 201                                                                                                      Maska
## 202                                                                                                The Decline
## 203                                                                               The Minimalists: Less Is Now
## 204                                                                                             The Polka King
## 205                                                                                                   The Prom
## 206                                                                  True Memoirs of an International Assassin
## 207                                                                                                     Ultras
## 208                                                                                                Come Sunday
## 209                                                                                       Forgive Us Our Debts
## 210                                                                                                       iBoy
## 211                                                                                                 Lovefucked
## 212                                                                                                    Juanita
## 213                                                                                             Murder Mystery
## 214                                                                                              Project Power
## 215                                                                                                    Rebecca
## 216                                                                         The Christmas Chronicles: Part Two
## 217                                                                                          The Kissing Booth
## 218                                                                                        The Princess Switch
## 219                                                                     To All the Boys: P.S. I Still Love You
## 220                                                                                                War Machine
## 221                                                                                              6 Underground
## 222                                                                               Between Two Ferns: The Movie
## 223                                                                                              Burning Sands
## 224                                                                                           Casting JonBenet
## 225                                                                                 Deidra & Laney Rob a Train
## 226                                                                                             Finding 'Ohana
## 227                                                                                                   Holidate
## 228                                                                                        Holiday in the Wild
## 229                                                                                           Hot Girls Wanted
## 230                                                                                                Like Father
## 231                                                                                                 Lost Girls
## 232                                                                                                  Otherhood
## 233                                                                                      Pee-wee's Big Holiday
## 234                                                                                                 Rogue City
## 235                                                                                                     Sergio
## 236                                                                                                Stuck Apart
## 237                                                                                       Tersanjung the Movie
## 238                                                                                                 The Killer
## 239                                                                                              The Lovebirds
## 240                                                                            The Most Hated Woman in America
## 241                                                                                             The Perfection
## 242                                                                              Tribhanga – Tedhi Medhi Crazy
## 243                                                                                            Unknown Origins
## 244                                                                                                    Work It
## 245                                                                                                 Alien Xmas
## 246                                                                                Baggio: The Divine Ponytail
## 247                                                                                                 Below Zero
## 248                                                                                                   Citation
## 249                                                                                     Crazy Awesome Teachers
## 250                                                                              Have You Ever Seen Fireflies?
## 251                                                                                           High Flying Bird
## 252                                                                                  In the Shadow of the Moon
## 253                                                                                                Lost Bullet
## 254                                                                         Octonauts & the Caves of Sac Actun
## 255                                                                                      Offering to the Storm
## 256                                                                                            Roxanne Roxanne
## 257                                                                                              Someone Great
## 258                                                                                       Spenser Confidential
## 259                                                                                  The Land of Steady Habits
## 260                                                                                          The Rachel Divide
## 261                                                                                                    Voyuer 
## 262                                                                                                 Win It All
## 263                                                                                                       1922
## 264                                                                                     A Tale of Two Kitchens
## 265                                                                                           Alex Strangelove
## 266                                                                                                    Apostle
## 267                                                                                                      Benji
## 268                                                                                                     Bright
## 269                                                                                                      Cargo
## 270                                                                                            Concrete Cowboy
## 271                                                                                              Feel the Beat
## 272                                                                                               Get the Goat
## 273                                                                                       I Am Not an Easy Man
## 274                                                                                                June & Kopi
## 275                                                                                              Music Teacher
## 276                                                                                       Nail Bomber: Manhunt
## 277                                                                                           Notes for My Son
## 278                                                                                                      Polar
## 279                                                                        Porta dos Fundos: The Last Hangover
## 280                                                                                                Sand Castle
## 281                                                                                               Shimmer Lake
## 282                                                                                                   Spectral
## 283                                                                                             The Babysitter
## 284                                                                                              The Discovery
## 285                                                                                         The Forest of Love
## 286                                                                                             The Laundromat
## 287                                                                               The Legend of Cocaine Island
## 288                                                                                               The Outsider
## 289                                                                                               Time to Hunt
## 290                                                                        To All the Boys: Always and Forever
## 291                                                                           Travis Scott: Look Mom I Can Fly
## 292                                                                                                   Uncorked
## 293                                                                                      Anelka: Misunderstood
## 294                                                                       Ariana Grande: Excuse Me, I Love You
## 295                                                                                                        ARQ
## 296                                                                                                    Birders
## 297                                                                                       Como Caído del Cielo
## 298                                                                                                First Match
## 299                                                                                                  Fractured
## 300                                                                                          Irreplaceable You
## 301                                                                                                 Isi & Ossi
## 302                                                                          John Was Trying to Contact Aliens
## 303                                                                                               Layla Majnun
## 304                                                                   Murder to Mercy: The Cyntoia Brown Story
## 305                                                                                                 My Own Man
## 306                                                                                         Nappily Ever After
## 307                                                                                              Over the Moon
## 308                                                                                                Street Flow
## 309                                                                                              Strong Island
## 310                                                                    Sturgill Simpson Presents: Sound & Fury
## 311                                                                                            Take Your Pills
## 312                                                                                        The Heartbreak Club
## 313                                                                                        The Mars Generation
## 314                                                                                               The Occupant
## 315                                                                                            The Willoughbys
## 316                                                                                            Triple Frontier
## 317                                                                                             Two Catalonias
## 318                                                                                         Walk. Ride. Rodeo.
## 319                                                                                                   Wheelman
## 320                                                                                          When We First Met
## 321                                                                                             A 3 Minute Hug
## 322                                                                                      All the Bright Places
## 323                                                                                           All Together Now
## 324                                                                                  Altered Carbon: Resleeved
## 325                                                                  Antoine Griezmann: The Making of a Legend
## 326                                                                                                    Canvas 
## 327                                                                    Chadwick Boseman: Portrait of an Artist
## 328                                                                                                 Chopsticks
## 329                                                                                                Da 5 Bloods
## 330                                                                          Dolly Parton: A MusiCares Tribute
## 331                                                            Eurovision Song Contest: The Story of Fire Saga
## 332                                                                                              Gerald's Game
## 333                                                                                                  His House
## 334                                                                         Jingle Jangle: A Christmas Journey
## 335                                                                                          Life Overtakes Me
## 336                                                                                               Lust Stories
## 337                                                                                                    Monster
## 338                                                                               Mowgli: Legend of the Jungle
## 339                                                                                      Nobody Knows I'm Here
## 340                                                                     Nobody Speak: Trials of the Free Press
## 341                                                                                                     Oxygen
## 342                                                                                                  Set It Up
## 343                                                                               The Incredible Jessica James
## 344                                                                                                  Tigertail
## 345                                                                                                     Tramps
## 346                                                                                          What Did Jack Do?
## 347                                                                                                   Bad Trip
## 348                                                                                                   Bird Box
## 349                                                                                                    Bulbbul
## 350                                                                                            Crazy About Her
## 351                                                                                            Elisa & Marcela
## 352                                                                                   I'll Sleep When I'm Dead
## 353                                                                              I'm Thinking of Ending Things
## 354                                                                                         It Takes a Lunatic
## 355                                                                                                  Milestone
## 356                                                                                              Recovery Boys
## 357                                                                     ReMastered: Who Killed Jam Master Jay?
## 358                                                                                    Shawn Mendes: In Wonder
## 359                                                                                             Space Sweepers
## 360                                                                                          The American Meme
## 361                                                                                                  The Angel
## 362                                                                                       The Crimes That Bind
## 363                                                                                  The Red Sea Diving Resort
## 364                                                                                What Would Sophia Loren Do?
## 365                                                                                             A Whisker Away
## 366                                                                                            Ajeeb Daastaans
## 367                                                                                     Arlo the Alligator Boy
## 368                                                                               Bikram: Yogi, Guru, Predator
## 369                                                                                                     Blame!
## 370                                                                                               Blue Miracle
## 371                                                                                              CounterPunch 
## 372                                                                    Crack: Cocaine, Corruption & Conspiracy
## 373                                                                                                 Extraction
## 374                                                                                               Giving Voice
## 375                                                                                            Hillbilly Elegy
## 376                                                                         Hope Frozen: A Quest to Live Twice
## 377                                                                                            Imperial Dreams
## 378                                                                                     Just Another Christmas
## 379                                                                                           Little Miss Sumo
## 380                                                                                            Malcolm & Marie
## 381                                                        Michael Bolton's Big, Sexy, Valentine's Day Special
## 382                                                                                                      Moxie
## 383                                                                                          Night in Paradise
## 384                                                                                                Paper Lives
## 385                                                                                   Parchis: The Documentary
## 386                                                                                                   Tallulah
## 387                                                                                              The Old Guard
## 388                                                                           Tony Robbins: I Am Not Your Guru
## 389                                                                                                   Upstarts
## 390                                                                                                    22 July
## 391                                                                                                     7 años
## 392                                                                                A Futile and Stupid Gesture
## 393                                                              A Life of Speed: The Juan Manuel Fangio Story
## 394                                                                                    A Love Song for Latasha
## 395                                                                                           All in My Family
## 396                                                                                         Always Be My Maybe
## 397                                                                                                   Becoming
## 398                                                                                       Long Live Brij Mohan
## 399                                                                                                    Calibre
## 400                                                                                              Death to 2020
## 401                                                                                        GIMS: On the Record
## 402                                                               Have a Good Trip: Adventures in Psychedelics
## 403                                                                                                 Heroin(e) 
## 404                                                                                                 Mercury 13
## 405                                                                                          Saving Capitalism
## 406                                                                                                Serious Men
## 407                                                                                       The Boys in the Band
## 408                                                                   The Boys in the Band: Something Personal
## 409                                                                                             The Life Ahead
## 410                                                                                 The Other Side of the Wind
## 411                                                                                                 The Trader
## 412                                                                                                To the Bone
## 413                                                                                Tony Parker: The Final Shot
## 414                                                                                                   AK vs AK
## 415                                                                                                Amanda Knox
## 416                                                                               Bigflo & Oil: Hip Hop Frenzy
## 417                                                                              Biggie: I Got a Story to Tell
## 418                                                                                           Cops and Robbers
## 419                                                                 I Don't Feel at Home in This World Anymore
## 420                                                                                                  Laerte-se
## 421                                                                                                       Mank
## 422                                                                                         Our Souls at Night
## 423                                                                                                Outlaw King
## 424                                                                                                   Pagglait
## 425                                                                          ReMastered: Who Shot the Sheriff?
## 426                                                                                              Seeing Allred
## 427                                                                                         Spelling the Dream
## 428                                                                                     The Claudia Kishi Club
## 429                                                                                             The Half of It
## 430                                                                                             The Highwaymen
## 431                                      The Lonely Island Presents: The Unauthorized Bash Brothers Experience
## 432                                                                  The Meyerowitz Stories (New and Selected)
## 433                                                                        Feminists: What Were They Thinking?
## 434                                                                                        Gaga: Five Foot Two
## 435                                I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron
## 436                                                                                              Kingdom of Us
## 437                                                                                 Lorena, Light-Footed Woman
## 438                                                                      Los Tigres del Norte at Folsom Prison
## 439                                                                                   Ma Rainey's Black Bottom
## 440                                                       Ma Rainey's Black Bottom: A Legacy Brought to Screen
## 441                                                    Operation Varsity Blues: The College Admissions Scandal
## 442                                                                                                       Pele
## 443                                                                        ReMastered: Devil at the Crossroads
## 444                                                                               ReMastered: The Lion's Share
## 445                                                                    ReMastered: The Miami Showband Massacre
## 446                                                                                                  Resurface
## 447                                                                          Rocko's Modern Life: Static Cling
## 448                                                                                                Rose Island
## 449                                                                                   The Christmas Chronicles
## 450                                                                                                   The Dirt
## 451                                                                                     The Night Comes for Us
## 452                                                     13th: A Conversation with Oprah Winfrey & Ava DuVernay
## 453                                                                                         Angela's Christmas
## 454                                                                                    Angela's Christmas Wish
## 455                                                                                                      Beats
## 456                                                                                            Circus of Books
## 457                                                                     Dance Dreams: Hot Chocolate Nutcracker
## 458                                                                                    Derren Brown: Sacrifice
## 459                                                                                    El Pepe: A Supreme Life
## 460                                                                                                   End Game
## 461                                                                                                     Evelyn
## 462                                                                                                      Ferry
## 463                                                                                           Grass Is Greener
## 464                                                                        Guillermo Vilas: Settling the Score
## 465                                                                            Joshua: Teenager vs. Superpower
## 466                                                                        Keith Richards: Under the Influence
## 467                                                                                       Knock Down the House
## 468                                                                      Loudon Wainwright III: Surviving Twin
## 469                                                                                  My Beautiful Broken Brain
## 470                                                                                                  One of Us
## 471                                                                                          Pieces of a Woman
## 472                                                                                       Ram Dass, Going Home
## 473                                                                 ReMastered: Tricky Dick & the Man in Black
## 474                                                                                          Rooting for Roona
## 475                                                                                     The Devil All the Time
## 476                                                                                                    The Dig
## 477                                                                                             The Great Hack
## 478                                                                                            The White Tiger
## 479                                                                          To All the Boys I've Loved Before
## 480                                                                      American Murder: The Family Next Door
## 481                                                                                             Audrie & Daisy
## 482                                                                                First They Killed My Father
## 483                                                               Fyre: The Greatest Party That Never Happened
## 484                                                                                           Into the Inferno
## 485                                                                                               LA Originals
## 486                                                                                               Ladies First
## 487                                                                                       Love per Square Foot
## 488                                                                                                  Paddleton
## 489                                                                                               Private Life
## 490                                                                                                  Seventeen
## 491                                                                                                  Sometimes
## 492                                                                                                       Soni
## 493                                                                                    The 40-Year-Old Version
## 494                                                                                               The Disciple
## 495                                                                                      The Edge of Democracy
## 496                                                                                                   The King
## 497                                                                The Road to El Camino: A Breaking Bad Movie
## 498                                                                                    The Siege of Jadotville
## 499                                                                                                      Zion 
## 500                                                                                        Dolemite Is My Name
## 501                                                                            El Camino: A Breaking Bad Movie
## 502                                                                                                   Extremis
## 503                                                                                         Father Soldier Son
## 504                                                                                         Get Me Roger Stone
## 505                                                                                         I'm No Longer Here
## 506                                                            Mucho Mucho Amor: The Legend of Walter Mercado 
## 507                                                                         Octonauts & the Great Barrier Reef
## 508                                                                                                       Okja
## 509                                                                                                 On My Skin
## 510                                                                                             Raat Akeli Hai
## 511                                                                        ReMastered: Massacre at the Stadium
## 512                                                                  ReMastered: The Two Killings of Sam Cooke
## 513                                                                                Secrets of the Saqqara Tomb
## 514                                                                                    Sitara: Let Girls Dream
## 515                                                                       Sky Ladder: The Art of Cai Guo-Qiang
## 516                                                                                            Team Foxcatcher
## 517                                                                               The Ballad of Buster Scruggs
## 518                                                                    The Death and Life of Marsha P. Johnson
## 519                                                                                 The Fundamentals of Caring
## 520                                                           The Other One: The Long Strange Trip of Bob Weir
## 521                                                                                           American Factory
## 522                                                                                           Fire in Paradise
## 523                                                                                                  Long Shot
## 524                                                                                             Miss Americana
## 525                                                                                   Period. End of Sentence.
## 526                                                                              Shawn Mendes: Live in Concert
## 527                                                                                                   Shirkers
## 528                                                                                        The Black Godfather
## 529                                                                              The Irishman: In Conversation
## 530                                                                                           The Speed Cubers
## 531                                                                              They'll Love Me When I'm Dead
## 532                                                                                                        Tig
## 533                                                                Barbra: The Music, The Mem'ries, The Magic!
## 534                                                                                Blackpink: Light Up the Sky
## 535                                                                                                City of Joy
## 536                                                                                       Dick Johnson Is Dead
## 537                                                                             Homecoming: A Film by Beyonce 
## 538                                                                             Invader Zim: Enter the Florpus
## 539                                                                      Joan Didion: The Center Will Not Hold
## 540                                                                        John Mulaney & the Sack Lunch Bunch
## 541                                                                                              Reversing Roe
## 542                                                                                          The White Helmets
## 543                                                                                                  Athlete A
## 544                                                                                                       Ludo
## 545                                                                                                     Quincy
## 546                                                Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere
## 547                                                                                           Tell Me Who I Am
## 548                                                                                          The Bleeding Edge
## 549                                                                                         The Social Dilemma
## 550                                                                                              The Two Popes
## 551                                                                                What Happened, Miss Simone?
## 552                                                                                                 Yeh Ballet
## 553                                                                                                      Anima
## 554                                                                                        Beasts of No Nation
## 555                                                                           Brene Brown: The Call to Courage
## 556                                                                         Crip Camp: A Disability Revolution
## 557 Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## 558                                                                     Justin Timberlake + The Tennessee Kids
## 559                                                                                               Road to Roma
## 560                                                                                                       Roma
## 561                                                                             If Anything Happens I Love You
## 562                                                                                               The Irishman
## 563                                                                                 The Trial of the Chicago 7
## 564                                                                                              A Secret Love
## 565                                                                                                     Icarus
## 566                                                                                             Marriage Story
## 567                                                                                             The Ivory Game
## 568                                                               Struggle: The Life and Lost Art of Szukaiski
## 569                                                                                             Chasing Coral 
## 570                                                                                         My Octopus Teacher
## 571                                                                                             Rising Phoenix
## 572                                                                                                       13th
## 573                                                                          Disclosure: Trans Lives on Screen
## 574                                                                                                      Klaus
## 575                                                                                                 Seaspiracy
## 576                                                                      The Three Deaths of Marisela Escobedo
## 577                                                                                    Cuba and the Cameraman 
## 578                                                                                     Dancing with the Birds
## 579                                                                 Ben Platt: Live from Radio City Music Hall
## 580                                                                      Taylor Swift: Reputation Stadium Tour
## 581                                                                Winter on Fire: Ukraine's Fight for Freedom
## 582                                                                                    Springsteen on Broadway
## 583                                                                  Emicida: AmarElo - It's All For Yesterday
## 584                                                                   David Attenborough: A Life on Our Planet
##                                    Genre           Premiere Runtime IMDB.Score
## 1                            Documentary     August 5, 2019      58        2.5
## 2                               Thriller    August 21, 2020      81        2.6
## 3                  Science fiction/Drama  December 26, 2019      79        2.6
## 4                        Horror thriller   January 19, 2018      94        3.2
## 5                                Mystery   October 30, 2020      90        3.4
## 6                                 Action   November 1, 2019     147        3.5
## 7                                 Comedy   December 4, 2020     112        3.7
## 8                    Heist film/Thriller       June 5, 2020     149        3.7
## 9                Musical/Western/Fantasy     March 23, 2018      73        3.9
## 10                                Comedy       May 18, 2021     139        4.1
## 11                           Documentary     April 22, 2021      58        4.1
## 12                                 Drama  November 27, 2020     112        4.1
## 13                       Romantic comedy September 18, 2020      97        4.1
## 14                         Action comedy    October 1, 2020     101        4.2
## 15                              Thriller  November 22, 2016      90        4.2
## 16                           Documentary  December 19, 2019      25        4.3
## 17                      Horror anthology    January 1, 2020     144        4.3
## 18                    Political thriller  February 21, 2020     115        4.3
## 19                                Comedy    January 1, 2021     102        4.3
## 20                       Horror thriller    August 25, 2017     100        4.4
## 21                           Documentary September 13, 2019      64        4.4
## 22                              Thriller      July 18, 2019      97        4.4
## 23                                Comedy    August 16, 2019      99        4.4
## 24                              Thriller  February 26, 2021     120        4.4
## 25                      Superhero-Comedy      April 9, 2021     105        4.4
## 26                              Thriller      July 16, 2020      89        4.5
## 27                       Romantic comedy      April 2, 2021      97        4.5
## 28                                Comedy      July 31, 2020     107        4.5
## 29                                Comedy  February 10, 2021      99        4.5
## 30                                Comedy   December 7, 2018      95        4.6
## 31                           Documentary       May 24, 2019      37        4.6
## 32                                Horror   October 28, 2016      89        4.6
## 33                         Romance drama  February 22, 2019      83        4.6
## 34                                Comedy   December 3, 2019      46        4.6
## 35                                Horror   October 25, 2019      85        4.6
## 36                                Comedy      July 15, 2020      88        4.6
## 37                           Documentary      July 14, 2020      86        4.6
## 38                                 Drama  November 30, 2020     105        4.7
## 39                 Science fiction/Drama   January 18, 2019      95        4.7
## 40                                Action      March 5, 2021      80        4.7
## 41                         Anime / Short      April 2, 2020       4        4.7
## 42                                 Drama    October 2, 2020      93        4.7
## 43                             Superhero  December 25, 2020     100        4.7
## 44                              Thriller   December 4, 2020     106        4.8
## 45                                 Heist    January 6, 2017      97        4.8
## 46                              Thriller        May 1, 2020     106        4.8
## 47                                Horror   October 28, 2020     103        4.8
## 48                                Comedy   January 20, 2017      80        4.8
## 49                                Comedy     April 10, 2020     101        4.8
## 50                               Western  December 11, 2015     119        4.8
## 51                                Action     April 17, 2020      80        4.9
## 52                   Animation/Superhero    August 14, 2020      89        4.9
## 53                           Family film  November 28, 2019      94        4.9
## 54                                 Drama   October 30, 2020      93        4.9
## 55                                Comedy   January 23, 2020      96        5.0
## 56                       Action-thriller      July 13, 2018     113        5.0
## 57                                 Drama   October 15, 2020      86        5.0
## 58                              Thriller      July 15, 2016     100        5.0
## 59                       Romantic comedy  February 11, 2021     102        5.0
## 60                                Horror   October 22, 2020      86        5.1
## 61                              Thriller   January 13, 2017     104        5.1
## 62                         Action comedy      April 3, 2020      88        5.1
## 63                     Teen comedy-drama     April 20, 2018      97        5.1
## 64                        Romantic drama  February 25, 2021     105        5.1
## 65                             Animation      July 23, 2020      90        5.1
## 66                                Comedy  September 8, 2017      99        5.2
## 67                 Aftershow / Interview    August 21, 2019      10        5.2
## 68                       Romantic comedy       July 3, 2020     106        5.2
## 69                     Christmas musical  November 22, 2020      98        5.2
## 70                                Comedy      July 20, 2018      94        5.2
## 71                                 Drama  February 22, 2019     112        5.2
## 72                                Horror       May 26, 2021     117        5.2
## 73                                Comedy  February 14, 2017      70        5.2
## 74                                Comedy        May 5, 2017      81        5.2
## 75                                Comedy    October 7, 2020     103        5.2
## 76                                Comedy       May 25, 2018      94        5.2
## 77             Science fiction adventure       May 24, 2019      98        5.2
## 78                                Comedy     April 14, 2017     131        5.2
## 79                       Science fiction       May 17, 2019      87        5.2
## 80                          Variety show       May 14, 2019      60        5.2
## 81                           Documentary   February 5, 2021     112        5.2
## 82                          Comedy-drama September 13, 2019     102        5.2
## 83                                 Drama  November 27, 2020      99        5.2
## 84                                Comedy     April 27, 2018     116        5.2
## 85                       Romantic comedy  November 30, 2018      92        5.3
## 86                                Comedy    August 30, 2019      83        5.3
## 87                              Thriller     April 30, 2020      97        5.3
## 88                                 Drama    August 12, 2020     112        5.3
## 89                              Thriller       May 28, 2020     116        5.3
## 90                              Thriller  September 7, 2018     102        5.3
## 91                                Horror     April 29, 2021     121        5.3
## 92                       Romantic comedy      June 24, 2018      95        5.3
## 93                                 Drama     April 12, 2019      93        5.3
## 94                                 Drama    August 26, 2016      92        5.3
## 95                 Comedy/Fantasy/Family   October 15, 2020      98        5.4
## 96                       Romantic comedy   December 5, 2019      85        5.4
## 97                                Comedy        May 3, 2019      78        5.4
## 98                                 Drama September 18, 2020     120        5.4
## 99                    Supernatural drama  September 2, 2020      92        5.4
## 100                        Action/Comedy     March 23, 2018     101        5.4
## 101                             Thriller      March 6, 2020     119        5.4
## 102                               Horror    October 4, 2019     101        5.4
## 103                                Drama      April 2, 2021     112        5.4
## 104                               Comedy    August 11, 2017      96        5.4
## 105               Action/Science fiction   January 15, 2021     114        5.4
## 106                      Romantic comedy  November 19, 2020      97        5.4
## 107               Romantic teenage drama       July 1, 2020     101        5.4
## 108                     Comedy / Musical   December 4, 2015      56        5.5
## 109                              Musical   October 26, 2018     100        5.5
## 110                             Thriller   December 1, 2019      94        5.5
## 111                               Comedy     April 28, 2021      94        5.5
## 112                          Documentary   October 16. 2019      21        5.5
## 113                               Comedy  November 15, 2019     104        5.5
## 114                         Variety show   February 8, 2019      63        5.5
## 115                      Romantic comedy     April 10, 2020     100        5.5
## 116              Science fiction/Mystery  February 23, 2018     126        5.5
## 117                          Crime drama    October 2, 2020     106        5.5
## 118                             Thriller  February 11, 2021      86        5.5
## 119         Psychological thriller drama     April 15, 2021     142        5.5
## 120                               Comedy   January 19, 2018     108        5.5
## 121                      Science fiction   February 4, 2018     102        5.5
## 122                      Romantic comedy  November 21, 2019      92        5.5
## 123                     Adventure/Comedy       July 6, 2018      83        5.5
## 124                         Black comedy    August 10, 2018      94        5.5
## 125                               Comedy      April 5, 2019      92        5.5
## 126                               Comedy       May 10, 2019     103        5.5
## 127                         Black comedy   October 12, 2017      89        5.6
## 128                               Comedy       July 7, 2016      95        5.6
## 129                         Comedy-drama   January 15, 2021     103        5.6
## 130                      Romantic comedy    August 29, 2019      97        5.6
## 131                             Thriller September 28, 2018     125        5.6
## 132                      Romantic comedy  September 3, 2020      91        5.6
## 133                              Romance      June 19, 2020      90        5.6
## 134                         Variety show   October 27, 2020      49        5.6
## 135                         Comedy-drama   January 11, 2019      98        5.6
## 136                       Romantic drama   February 5, 2021     107        5.6
## 137                      Science fiction  December 23, 2020     118        5.6
## 138                             Thriller September 16, 2020      94        5.6
## 139                               Comedy    August 21, 2020     103        5.6
## 140                        Horror comedy    October 2, 2020      86        5.6
## 141                          Documentary     April 14, 2021      83        5.6
## 142                    Christian musical     March 26, 2021      97        5.7
## 143                  Romantic teen drama     March 25, 2021      99        5.7
## 144                       Romantic drama  December 15, 2017     104        5.7
## 145                               Family September 11, 2020     102        5.7
## 146                          Dark comedy   December 8, 2017      89        5.7
## 147                               Horror   October 18, 2019      98        5.7
## 148                      Romantic comedy    October 9, 2020     125        5.7
## 149                                Drama       May 16, 2019      89        5.7
## 150                               Comedy    January 4, 2019      94        5.7
## 151                        Comedy horror  September 1, 2017      94        5.7
## 152                          Documentary      June 18, 2020      85        5.7
## 153                          Documentary  December 12, 2018      34        5.7
## 154                               Action      July 12, 2019      86        5.7
## 155                             Thriller     April 14, 2021      91        5.7
## 156                        Action comedy       May 27, 2016     108        5.7
## 157                      Romantic comedy   November 2, 2018      95        5.7
## 158               Psychological thriller       May 14, 2021     100        5.7
## 159                               Comedy       May 13, 2020      90        5.7
## 160                             Thriller   February 1, 2019     112        5.7
## 161                               Comedy     March 12, 2021      86        5.7
## 162                         Comedy-drama     March 29, 2019     124        5.8
## 163                      Romantic comedy  December 14, 2020     107        5.8
## 164                      Romantic comedy  November 17, 2017      92        5.8
## 165                                Drama        May 1, 2020     121        5.8
## 166                                Drama   November 1, 2019      90        5.8
## 167                               Biopic  December 16, 2016     104        5.8
## 168                               Comedy     April 27, 2018      92        5.8
## 169                                Drama       June 5, 2020     114        5.8
## 170                                Drama    August 21, 2020      98        5.8
## 171             Science fiction/Thriller      July 27, 2018      95        5.8
## 172                      Romantic comedy     March 30, 2018      78        5.8
## 173                             Thriller       May 14, 2021     107        5.8
## 174                      Romantic comedy   November 8, 2019      92        5.8
## 175                         Mockumentary   October 13, 2016      95        5.8
## 176                      Romantic comedy   November 5, 2020      96        5.8
## 177                         Comedy-drama  November 30, 2018     118        5.8
## 178                      Romantic comedy     April 30, 2020     105        5.8
## 179                               Satire     April 17, 2020      94        5.8
## 180                         One-man show     April 28, 2017      52        5.8
## 181                Romantic comedy-drama  September 7, 2018     105        5.8
## 182                          Dark comedy     April 28, 2017      95        5.8
## 183                               Satire     April 29, 2016     100        5.8
## 184             Science fiction/Thriller      June 29, 2018      97        5.8
## 185                               Comedy    August 24, 2018      89        5.8
## 186                        Comedy/Horror September 10, 2020     102        5.8
## 187                              Fantasy   December 7, 2020      96        5.8
## 188                      Romantic comedy      July 24, 2020     131        5.8
## 189                      Romantic comedy     April 12, 2019      89        5.8
## 190                                Drama  November 11, 2020      93        5.8
## 191                      Romantic comedy    October 2, 2020     111        5.8
## 192                                Drama      April 6, 2018      75        5.9
## 193                             Thriller   January 17, 2020     120        5.9
## 194                         Sports-drama      April 6, 2018      96        5.9
## 195                         Zombie/Heist       May 21, 2021     148        5.9
## 196                 Psychological horror  November 16, 2018      94        5.9
## 197                              Mystery  November 15, 2019     107        5.9
## 198                         Mockumentary      July 16, 2019      32        5.9
## 199                                Drama   February 7, 2020     104        5.9
## 200                          Documentary September 28, 2018      23        5.9
## 201                      Romantic comedy     March 27, 2020     111        5.9
## 202                             Thriller     March 27, 2020      83        5.9
## 203                          Documentary    January 1, 2021      53        5.9
## 204                         Comedy-drama   January 12, 2018      95        5.9
## 205                              Musical  December 11, 2020     132        5.9
## 206                        Action comedy  November 11, 2016      98        5.9
## 207                          Sports film     March 20, 2020     108        5.9
## 208                               Biopic     April 13, 2018     106        6.0
## 209                                Drama        May 4, 2018     104        6.0
## 210             Science fiction/Thriller   January 27, 2017      90        6.0
## 211                                Drama     August 9, 2019     106        6.0
## 212                                Drama      March 8, 2019      90        6.0
## 213                       Comedy mystery      June 14, 2019      97        6.0
## 214                            Superhero    August 14, 2020     113        6.0
## 215                    Romantic thriller   October 21, 2020     123        6.0
## 216                     Christmas comedy  November 25, 2020     115        6.0
## 217                      Romantic comedy       May 11, 2018     105        6.0
## 218                      Romantic comedy  November 16, 2018     101        6.0
## 219                      Romantic comedy  February 12, 2020     102        6.0
## 220                           War-Comedy       May 26, 2017     122        6.0
## 221                               Action  December 13, 2019     128        6.1
## 222                               Comedy September 20, 2019      82        6.1
## 223                                Drama     March 10, 2017     102        6.1
## 224                          Documentary     April 28, 2017      80        6.1
## 225                                Drama     March 17, 2017      94        6.1
## 226                               Family   January 29, 2021     123        6.1
## 227              Romantic comedy/Holiday   October 28, 2020     104        6.1
## 228                    Adventure-romance   November 1, 2019      85        6.1
## 229                          Documentary       May 29, 2015      84        6.1
## 230                               Comedy     August 3, 2018     103        6.1
## 231                          Crime drama     March 13, 2020      95        6.1
## 232                               Comedy     August 2, 2019     100        6.1
## 233                            Adventure     March 18, 2016      89        6.1
## 234                          Crime drama   October 30, 2020     116        6.1
## 235                               Biopic     April 17, 2020     118        6.1
## 236                                Drama    January 8, 2021      96        6.1
## 237                                Drama      April 1, 2021     114        6.1
## 238                              Western  November 10, 2017      99        6.1
## 239                      Romantic comedy       May 22, 2020      87        6.1
## 240                               Biopic     March 24, 2017      92        6.1
## 241                      Horror-thriller       May 24, 2019      90        6.1
## 242                                Drama   January 15, 2021      95        6.1
## 243                             Thriller    August 28, 2020      96        6.1
## 244                         Dance comedy     August 7, 2020      93        6.1
## 245                          Stop Motion  November 20, 2020      42        6.2
## 246                               Biopic       May 26, 2021      92        6.2
## 247                                Drama   January 29, 2021     106        6.2
## 248                                Drama   November 6, 2020     151        6.2
## 249                         Comedy-drama    August 17, 2020     101        6.2
## 250                               Comedy      April 9, 2021     114        6.2
## 251                         Sports-drama   February 8, 2019      90        6.2
## 252                             Thriller September 27, 2019     115        6.2
## 253                             Thriller      June 19, 2020      92        6.2
## 254                            Animation    August 14, 2020      72        6.2
## 255                             Thriller      July 24, 2020     139        6.2
## 256                               Biopic     March 23, 2018      98        6.2
## 257                      Romantic comedy     April 19, 2019      92        6.2
## 258                        Action comedy      March 6, 2020     111        6.2
## 259                                Drama September 14, 2018      98        6.2
## 260                          Documentary     April 27, 2018     104        6.2
## 261                          Documentary   December 1, 2017      95        6.2
## 262                               Comedy      April 7, 2017      88        6.2
## 263                   Horror/Crime drama   October 20, 2017     102        6.3
## 264                          Documentary       May 22, 2019      30        6.3
## 265                      Romantic comedy       June 8, 2018      99        6.3
## 266                      Horror-thriller   October 12, 2018     129        6.3
## 267                          Family film     March 16, 2018      87        6.3
## 268                        Urban fantasy  December 22, 2017     117        6.3
## 269                         Drama/Horror       May 18, 2018     104        6.3
## 270                                Drama      April 2, 2021     111        6.3
## 271                  Family/Comedy-drama      June 19, 2020     107        6.3
## 272                               Comedy     March 18, 2021      97        6.3
## 273                      Romantic comedy     April 13, 2018      98        6.3
## 274                                Drama   January 28, 2021      90        6.3
## 275                                Drama     April 19, 2019     101        6.3
## 276                          Documentary       May 26, 2021      72        6.3
## 277                                Drama  November 24, 2020      83        6.3
## 278                               Action   January 25, 2019     118        6.3
## 279                               Comedy  December 21, 2018      44        6.3
## 280                                  War     April 21, 2017     113        6.3
## 281                       Crime thriller       June 9, 2017      86        6.3
## 282               Science fiction/Action   December 9, 2016     108        6.3
## 283                   Teen comedy horror   October 13, 2017      85        6.3
## 284                Science fiction/Drama     March 31, 2017     102        6.3
## 285                                Drama   October 11, 2019     151        6.3
## 286                         Comedy-drama   October 18, 2019      98        6.3
## 287                          Documentary     March 29, 2019      87        6.3
## 288                          Crime drama      March 9, 2018     120        6.3
## 289                             Thriller     April 23, 2020     134        6.3
## 290                      Romantic comedy  February 12, 2021     109        6.3
## 291                          Documentary    August 28, 2019      85        6.3
## 292                                Drama     March 27, 2020     103        6.3
## 293                          Documentary     August 5, 2020      94        6.4
## 294                         Concert Film  December 21, 2020      97        6.4
## 295             Science fiction/Thriller September 16, 2016      88        6.4
## 296                          Documentary September 25, 2019      37        6.4
## 297                       Musical comedy  December 24, 2019     112        6.4
## 298                         Sports-drama     March 30, 2018     102        6.4
## 299                             Thriller   October 11, 2019     100        6.4
## 300                                Drama  February 16, 2018      96        6.4
## 301                      Romantic comedy  February 14, 2020     113        6.4
## 302                          Documentary    August 20, 2020      16        6.4
## 303                       Romantic drama  February 11, 2021     119        6.4
## 304                          Documentary     April 29, 2020      97        6.4
## 305                          Documentary  December 13, 2014      81        6.4
## 306                         Comedy-drama September 21, 2018      98        6.4
## 307          Animation/Musical/Adventure   October 23, 2020      95        6.4
## 308                                Drama   October 12, 2019      96        6.4
## 309                          Documentary September 15. 2017     107        6.4
## 310                 Animation / Musicial September 27, 2019      41        6.4
## 311                          Documentary     March 16, 2018      87        6.4
## 312                         Comedy-drama   January 14, 2021     101        6.4
## 313                          Documentary        May 5, 2017      97        6.4
## 314                             Thriller     March 25, 2020     103        6.4
## 315           Animation/Comedy/Adventure     April 22, 2020      90        6.4
## 316                      Action-thriller     March 13, 2019     125        6.4
## 317                          Documentary September 28, 2018     116        6.4
## 318                                Drama      March 8, 2019      99        6.4
## 319                      Action thriller   October 20, 2017      82        6.4
## 320                      Romantic comedy   February 9, 2018      97        6.4
## 321                          Documentary   October 28, 2019      28        6.5
## 322                              Romance  February 28, 2020     108        6.5
## 323                                Drama    August 28, 2020      93        6.5
## 324                Anime/Science fiction     March 19, 2020      74        6.5
## 325                          Documentary     March 21, 2019      60        6.5
## 326                    Animation / Short  December 11, 2020       9        6.5
## 327                          Documentary     April 17, 2021      21        6.5
## 328                               Comedy       May 31, 2019     100        6.5
## 329                            War drama      June 12, 2020     155        6.5
## 330                          Documentary      April 7, 2021      55        6.5
## 331                       Musical comedy      June 26, 2020     123        6.5
## 332                      Horror thriller September 29, 2017     103        6.5
## 333                             Thriller   October 30, 2020      93        6.5
## 334             Family/Christmas musical  November 13, 2020     119        6.5
## 335                          Documentary      June 14, 2019      40        6.5
## 336                                Drama      June 15, 2018     120        6.5
## 337                                Drama        May 7, 2021      98        6.5
## 338                            Adventure   December 7, 2018     104        6.5
## 339                                Drama      June 24, 2020      91        6.5
## 340                          Documentary      June 23, 2017      95        6.5
## 341             Science fiction thriller       May 12, 2021     101        6.5
## 342                      Romantic comedy      June 15, 2018     105        6.5
## 343                               Comedy      July 28, 2017      83        6.5
## 344                                Drama     April 10, 2020      91        6.5
## 345                              Romance     April 21, 2017      83        6.5
## 346                        Drama / Short   January 20, 2020      17        6.5
## 347           Hidden-camera prank comedy     March 26, 2021      86        6.6
## 348               Psychological thriller  December 21, 2018     124        6.6
## 349                               Horror      June 24, 2020      94        6.6
## 350                      Romantic comedy  February 26, 2021     102        6.6
## 351                              Romance       June 7, 2019     118        6.6
## 352                          Documentary    August 19, 2016      79        6.6
## 353               Psychological thriller  September 4, 2020     134        6.6
## 354                          Documentary   October 25, 2019     126        6.6
## 355                                Drama        May 7, 2021      98        6.6
## 356                          Documentary      June 29, 2018      89        6.6
## 357                          Documentary   December 7, 2018      58        6.6
## 358                          Documentary  November 23, 2020      83        6.6
## 359                      Science fiction   February 5, 2021     136        6.6
## 360                          Documentary   December 7, 2018      98        6.6
## 361                         Spy thriller September 14, 2018     114        6.6
## 362                          Crime drama    August 20, 2020      99        6.6
## 363                         Spy thriller      July 31, 2019     130        6.6
## 364                          Documentary   January 15, 2021      32        6.6
## 365                        Anime/Fantasy      June 18, 2020     104        6.7
## 366                                Drama     April 16, 2021     142        6.7
## 367              Animated musical comedy     April 16, 2021      92        6.7
## 368                          Documentary  November 20, 2019      86        6.7
## 369                Anime/Science fiction       May 20, 2017     106        6.7
## 370                                Drama       May 27, 2021      95        6.7
## 371                          Documentary      June 16, 2017      91        6.7
## 372                          Documentary   January 11, 2021      89        6.7
## 373                               Action     April 24, 2020     117        6.7
## 374                          Documentary  December 11, 2020      90        6.7
## 375                                Drama  November 24, 2020     117        6.7
## 376                          Documentary September 15, 2020      80        6.7
## 377                                Drama   February 3, 2017      87        6.7
## 378                               Comedy   December 3, 2020     101        6.7
## 379                          Documentary   October 28, 2019      19        6.7
## 380                       Romantic drama   February 5, 2021     106        6.7
## 381                         Variety Show   February 7, 2017      54        6.7
## 382                                Drama      March 3, 2021     111        6.7
## 383                                Drama      April 9, 2021     132        6.7
## 384                                Drama     March 12, 2021      97        6.7
## 385                          Documentary      July 10, 2019     106        6.7
## 386                         Comedy-drama      July 29, 2016     111        6.7
## 387                     Superhero/Action      July 10, 2020     124        6.7
## 388                          Documentary      July 15. 2016     116        6.7
## 389                                Drama   October 18, 2019     112        6.7
## 390                                Drama   October 10, 2018     144        6.8
## 391                                Drama   October 28, 2016      76        6.8
## 392                  Biographical/Comedy   January 26, 2018     101        6.8
## 393                          Documentary     March 20, 2020      92        6.8
## 394                          Documentary September 21, 2020      19        6.8
## 395                          Documentary        May 3, 2019      39        6.8
## 396                      Romantic comedy       May 31, 2019     102        6.8
## 397                          Documentary        May 6, 2020      89        6.8
## 398                               Comedy     August 3, 2018     105        6.8
## 399                             Thriller      June 29, 2018     101        6.8
## 400                               Comedy  December 27, 2020      70        6.8
## 401                          Documentary September 17, 2020      96        6.8
## 402                          Documentary       May 11, 2020      85        6.8
## 403                          Documentary September 12, 2017      39        6.8
## 404                          Documentary     April 20, 2018      79        6.8
## 405                          Documentary  November 21, 2017      73        6.8
## 406                                Drama    October 2, 2020     114        6.8
## 407                                Drama September 30, 2020     121        6.8
## 408                Aftershow / Interview September 30, 2020      28        6.8
## 409                                Drama  November 13, 2020      95        6.8
## 410                                Drama   November 2, 2018     122        6.8
## 411                          Documentary   February 9, 2018      23        6.8
## 412                                Drama      July 14, 2017     107        6.8
## 413                          Documentary    January 6, 2021      98        6.8
## 414                             Thriller  December 24, 2020     108        6.9
## 415                          Documentary September 30, 2016      92        6.9
## 416                          Documentary    October 8, 2020     100        6.9
## 417                          Documentary      March 1, 2021      97        6.9
## 418                    Animation / Short  December 28, 2020       7        6.9
## 419                                Drama  February 24, 2017      96        6.9
## 420                          Documentary       May 19, 2017     100        6.9
## 421                               Biopic   December 4, 2020     132        6.9
## 422                              Romance September 29, 2017     103        6.9
## 423                      Historical-epic   November 9, 2018     121        6.9
## 424                         Comedy-drama     March 26, 2021     114        6.9
## 425                          Documentary   October 12, 2018      57        6.9
## 426                          Documentary   February 9, 2018      95        6.9
## 427                          Documentary       June 3, 2020      83        6.9
## 428                          Documentary      July 10, 2020      17        6.9
## 429                              Romance        May 1, 2020     105        6.9
## 430                          Crime drama     March 29, 2019     131        6.9
## 431                     Comedy / Musical       May 23, 2019      30        6.9
## 432                         Comedy-drama   October 13, 2017     112        6.9
## 433                          Documentary   October 12, 2018      86        7.0
## 434                          Documentary September 22, 2017     100        7.0
## 435                Aftershow / Interview   November 3, 2020      14        7.0
## 436                          Documentary   October 13, 2017     109        7.0
## 437                          Documentary  November 20, 2019      28        7.0
## 438                          Documentary September 15, 2019      64        7.0
## 439                                Drama  December 18, 2020      94        7.0
## 440                Aftershow / Interview  December 18, 2020      31        7.0
## 441                          Documentary     March 17, 2021      99        7.0
## 442                          Documentary  February 23, 2021     108        7.0
## 443                          Documentary     April 26, 2019      48        7.0
## 444                          Documentary       May 17, 2019      84        7.0
## 445                          Documentary     March 22, 2019      70        7.0
## 446                          Documentary  September 1, 2017      27        7.0
## 447                   Animation / Comedy     August 9, 2019      45        7.0
## 448                               Comedy   December 9, 2020     117        7.0
## 449   Christmas/Fantasy/Adventure/Comedy  November 22, 2018     104        7.0
## 450                               Biopic     March 22, 2019     108        7.0
## 451                      Action-thriller   October 19, 2018     121        7.0
## 452                Aftershow / Interview   January 26, 2017      36        7.1
## 453                            Animation  November 30, 2018      30        7.1
## 454                            Animation   December 1, 2020      47        7.1
## 455                                Drama      June 19, 2019     110        7.1
## 456                          Documentary     April 22, 2020      92        7.1
## 457                          Documentary  November 27, 2020      80        7.1
## 458                    Mentalism special   October 19, 2018      49        7.1
## 459                          Documentary  December 27, 2019      73        7.1
## 460                          Documentary        May 4, 2018      40        7.1
## 461                          Documentary September 10, 2019      96        7.1
## 462                          Crime drama       May 14, 2021     106        7.1
## 463                          Documentary     April 20, 2019      97        7.1
## 464                          Documentary   October 27, 2020      94        7.1
## 465                          Documentary       May 26, 2017      78        7.1
## 466                          Documentary September 18, 2015      81        7.1
## 467                          Documentary        May 1, 2019      87        7.1
## 468                         One-man show  November 13, 2018      91        7.1
## 469                          Documentary     March 18, 2016      91        7.1
## 470                          Documentary   October 20, 2017      95        7.1
## 471                                Drama    January 7, 2021     126        7.1
## 472                          Documentary      April 6, 2018      31        7.1
## 473                          Documentary   November 2, 2018      58        7.1
## 474                          Documentary   October 15, 2020      41        7.1
## 475               Psychological thriller September 16, 2020     138        7.1
## 476                                Drama   January 29, 2021     112        7.1
## 477                          Documentary      July 24, 2019     114        7.1
## 478                                Drama   January 22, 2021     125        7.1
## 479                      Romantic comedy    August 17, 2018      99        7.1
## 480                          Documentary September 30, 2020      82        7.2
## 481                          Documentary September 23, 2016      98        7.2
## 482                                Drama September 15, 2017     136        7.2
## 483                          Documentary   January 18, 2019      97        7.2
## 484                          Documentary   October 28, 2016     107        7.2
## 485                          Documentary     April 10, 2020      92        7.2
## 486                          Documentary      March 8, 2018      39        7.2
## 487                      Romantic comedy  February 14, 2018     133        7.2
## 488                         Drama-Comedy  February 22, 2019      89        7.2
## 489                                Drama    October 5, 2018     124        7.2
## 490           Coming-of-age comedy-drama   October 18, 2019      99        7.2
## 491                                Drama        May 1, 2018     101        7.2
## 492                          Crime drama   January 18, 2019      97        7.2
## 493                               Comedy    October 9, 2020     124        7.2
## 494                                Drama     April 30, 2021     129        7.2
## 495                          Documentary      June 19, 2019     121        7.2
## 496                     Historical drama   November 1, 2019     140        7.2
## 497                            Making-of   October 29, 2019      13        7.2
## 498                                  War    October 7, 2016     108        7.2
## 499                          Documentary    August 10, 2018      11        7.2
## 500                               Biopic   October 25, 2019     118        7.3
## 501                          Crime drama   October 11, 2019     121        7.3
## 502                          Documentary September 13, 2016      24        7.3
## 503                          Documentary      July 17, 2020     100        7.3
## 504                          Documentary       May 12, 2017     101        7.3
## 505                                Drama       May 27, 2020     105        7.3
## 506                          Documentary       July 8, 2020      96        7.3
## 507                            Animation   October 13, 2020      47        7.3
## 508                     Action-adventure      June 28, 2017     121        7.3
## 509                          Crime drama September 12, 2018     100        7.3
## 510                             Thriller      July 31, 2020     149        7.3
## 511                          Documentary   January 11, 2019      64        7.3
## 512                          Documentary   February 8, 2019      64        7.3
## 513                          Documentary   October 28, 2020     114        7.3
## 514                    Animation / Short      March 8, 2020      15        7.3
## 515                          Documentary   October 14, 2016      79        7.3
## 516                          Documentary     April 29, 2016      90        7.3
## 517                              Western  November 16, 2018     132        7.3
## 518                          Documentary    October 6, 2017     105        7.3
## 519                         Comedy-drama      June 24, 2016      97        7.3
## 520                          Documentary       May 22, 2015      83        7.3
## 521                          Documentary    August 21, 2019     110        7.4
## 522                          Documentary   November 1, 2019      39        7.4
## 523                          Documentary September 29, 2017      40        7.4
## 524                          Documentary   January 31, 2020      85        7.4
## 525                          Documentary  February 12, 2019      26        7.4
## 526                         Concert Film  November 25, 2020      87        7.4
## 527                          Documentary   October 26, 2018      97        7.4
## 528                          Documentary       June 7, 2019     118        7.4
## 529                Aftershow / Interview  November 27, 2019      23        7.4
## 530                          Documentary      July 29, 2020      40        7.4
## 531                          Documentary   November 2, 2018      98        7.4
## 532                          Documentary      July 17, 2015      80        7.4
## 533                         Concert Film  November 22, 2017     108        7.5
## 534                          Documentary   October 14, 2020      79        7.5
## 535                          Documentary  September 7, 2018      74        7.5
## 536                          Documentary    October 2, 2020      90        7.5
## 537                          Documentary     April 17, 2019     137        7.5
## 538          Animation / Science Fiction    August 16, 2019      71        7.5
## 539                          Documentary   October 27. 2017      98        7.5
## 540                         Variety show  December 24, 2019      70        7.5
## 541                          Documentary September 13, 2018      99        7.5
## 542                          Documentary September 16. 2016      40        7.5
## 543                          Documentary      June 24, 2020     104        7.6
## 544                Anthology/Dark comedy  November 12, 2020     149        7.6
## 545                          Documentary September 21, 2018     124        7.6
## 546                          Documentary      June 12, 2019     144        7.6
## 547                          Documentary   October 18, 2019      85        7.6
## 548                          Documentary      July 27, 2018     100        7.6
## 549                          Documentary  September 9, 2020      94        7.6
## 550                                Drama  December 20, 2019     125        7.6
## 551                          Documentary      June 26, 2015      84        7.6
## 552                                Drama  February 21, 2020     117        7.6
## 553                      Musical / Short      June 27, 2019      15        7.7
## 554                            War drama   October 16, 2015     136        7.7
## 555                          Documentary     April 19, 2019      76        7.7
## 556                          Documentary     March 25, 2020     108        7.7
## 557                          Documentary  November 17, 2017      94        7.7
## 558                         Concert Film   October 12, 2016      90        7.7
## 559                            Making-of  February 11, 2020      72        7.7
## 560                                Drama  December 14, 2018     135        7.7
## 561                    Animation / Short  November 20, 2020      12        7.8
## 562                          Crime drama  November 27, 2019     209        7.8
## 563                                Drama   October 16, 2020     130        7.8
## 564                          Documentary     April 29, 2020      82        7.9
## 565                          Documentary     August 4, 2017     120        7.9
## 566                                Drama   December 6, 2019     136        7.9
## 567                          Documentary   November 4, 2016     112        7.9
## 568                          Documentary  December 21, 2018     105        8.0
## 569                          Documentary      July 14, 2017      89        8.1
## 570                          Documentary  September 7, 2020      85        8.1
## 571                          Documentary    August 26, 2020     106        8.1
## 572                          Documentary    October 7, 2016     100        8.2
## 573                          Documentary      June 19, 2020     107        8.2
## 574 Animation/Christmas/Comedy/Adventure  November 15, 2019      97        8.2
## 575                          Documentary     March 24, 2021      89        8.2
## 576                          Documentary   October 14, 2020     109        8.2
## 577                          Documentary  November 24, 2017     114        8.3
## 578                          Documentary   October 23, 2019      51        8.3
## 579                         Concert Film       May 20, 2020      85        8.4
## 580                         Concert Film  December 31, 2018     125        8.4
## 581                          Documentary    October 9, 2015      91        8.4
## 582                         One-man show  December 16, 2018     153        8.5
## 583                          Documentary   December 8, 2020      89        8.6
## 584                          Documentary    October 4, 2020      83        9.0
##                       Language "IMDB.Score" 2
## 1             English/Japanese   IMDB.Score 2
## 2                      Spanish   IMDB.Score 2
## 3                      Italian   IMDB.Score 2
## 4                      English   IMDB.Score 2
## 5                        Hindi   IMDB.Score 2
## 6                        Hindi   IMDB.Score 2
## 7                      Turkish   IMDB.Score 2
## 8                      English   IMDB.Score 2
## 9                      English   IMDB.Score 2
## 10                       Hindi   IMDB.Score 2
## 11                     English   IMDB.Score 2
## 12                      Korean   IMDB.Score 2
## 13                  Indonesian   IMDB.Score 2
## 14                       Malay   IMDB.Score 2
## 15                     English   IMDB.Score 2
## 16                     Spanish   IMDB.Score 2
## 17                       Hindi   IMDB.Score 2
## 18                     English   IMDB.Score 2
## 19                      Korean   IMDB.Score 2
## 20                     English   IMDB.Score 2
## 21                     English   IMDB.Score 2
## 22                     English   IMDB.Score 2
## 23                     English   IMDB.Score 2
## 24                       Hindi   IMDB.Score 2
## 25                     English   IMDB.Score 2
## 26                     English   IMDB.Score 2
## 27                       Dutch   IMDB.Score 2
## 28                     English   IMDB.Score 2
## 29                      French   IMDB.Score 2
## 30                     Italian   IMDB.Score 2
## 31             English/Spanish   IMDB.Score 2
## 32                     English   IMDB.Score 2
## 33                      French   IMDB.Score 2
## 34                  Portuguese   IMDB.Score 2
## 35                     English   IMDB.Score 2
## 36                     Italian   IMDB.Score 2
## 37                      French   IMDB.Score 2
## 38                    Filipino   IMDB.Score 2
## 39                     English   IMDB.Score 2
## 40                      French   IMDB.Score 2
## 41                     English   IMDB.Score 2
## 42                     Italian   IMDB.Score 2
## 43                     English   IMDB.Score 2
## 44                      German   IMDB.Score 2
## 45                     English   IMDB.Score 2
## 46                       Hindi   IMDB.Score 2
## 47                      Polish   IMDB.Score 2
## 48                     English   IMDB.Score 2
## 49                     English   IMDB.Score 2
## 50                     English   IMDB.Score 2
## 51                      French   IMDB.Score 2
## 52                     English   IMDB.Score 2
## 53                     English   IMDB.Score 2
## 54                     Spanish   IMDB.Score 2
## 55                  Portuguese   IMDB.Score 2
## 56                     English   IMDB.Score 2
## 57                  Indonesian   IMDB.Score 2
## 58                     English   IMDB.Score 2
## 59                      Polish   IMDB.Score 2
## 60                   Norwegian   IMDB.Score 2
## 61                     English   IMDB.Score 2
## 62                     English   IMDB.Score 2
## 63                     English   IMDB.Score 2
## 64                  Indonesian   IMDB.Score 2
## 65                     English   IMDB.Score 2
## 66                     English   IMDB.Score 2
## 67                     English   IMDB.Score 2
## 68                     English   IMDB.Score 2
## 69                     English   IMDB.Score 2
## 70                     English   IMDB.Score 2
## 71                     Marathi   IMDB.Score 2
## 72                        Thai   IMDB.Score 2
## 73                     English   IMDB.Score 2
## 74                     English   IMDB.Score 2
## 75                     English   IMDB.Score 2
## 76                     English   IMDB.Score 2
## 77                     English   IMDB.Score 2
## 78                     English   IMDB.Score 2
## 79                     English   IMDB.Score 2
## 80                     English   IMDB.Score 2
## 81                     English   IMDB.Score 2
## 82                     English   IMDB.Score 2
## 83                     Italian   IMDB.Score 2
## 84                     English   IMDB.Score 2
## 85                     English   IMDB.Score 2
## 86                      French   IMDB.Score 2
## 87                     English   IMDB.Score 2
## 88                       Hindi   IMDB.Score 2
## 89                     Spanish   IMDB.Score 2
## 90                      French   IMDB.Score 2
## 91                     English   IMDB.Score 2
## 92                      French   IMDB.Score 2
## 93                     Spanish   IMDB.Score 2
## 94                     English   IMDB.Score 2
## 95                     English   IMDB.Score 2
## 96                     English   IMDB.Score 2
## 97                     Spanish   IMDB.Score 2
## 98                       Hindi   IMDB.Score 2
## 99                      German   IMDB.Score 2
## 100                    English   IMDB.Score 2
## 101                      Hindi   IMDB.Score 2
## 102                    English   IMDB.Score 2
## 103                     French   IMDB.Score 2
## 104                    English   IMDB.Score 2
## 105                    English   IMDB.Score 2
## 106                    English   IMDB.Score 2
## 107                    Italian   IMDB.Score 2
## 108                    English   IMDB.Score 2
## 109                    English   IMDB.Score 2
## 110                   Filipino   IMDB.Score 2
## 111                 Portuguese   IMDB.Score 2
## 112                    English   IMDB.Score 2
## 113                      Hindi   IMDB.Score 2
## 114                    English   IMDB.Score 2
## 115                    English   IMDB.Score 2
## 116                    English   IMDB.Score 2
## 117                    English   IMDB.Score 2
## 118                    Swedish   IMDB.Score 2
## 119                   Japanese   IMDB.Score 2
## 120                    English   IMDB.Score 2
## 121                    English   IMDB.Score 2
## 122                    English   IMDB.Score 2
## 123                    English   IMDB.Score 2
## 124                    English   IMDB.Score 2
## 125                    English   IMDB.Score 2
## 126                    English   IMDB.Score 2
## 127             Spanish/Basque   IMDB.Score 2
## 128                    English   IMDB.Score 2
## 129                 Portuguese   IMDB.Score 2
## 130                    English   IMDB.Score 2
## 131                    English   IMDB.Score 2
## 132                    English   IMDB.Score 2
## 133                    Turkish   IMDB.Score 2
## 134                    English   IMDB.Score 2
## 135                    English   IMDB.Score 2
## 136                    Italian   IMDB.Score 2
## 137                    English   IMDB.Score 2
## 138                    Spanish   IMDB.Score 2
## 139                    English   IMDB.Score 2
## 140                    English   IMDB.Score 2
## 141                    English   IMDB.Score 2
## 142                    English   IMDB.Score 2
## 143                    Italian   IMDB.Score 2
## 144                    English   IMDB.Score 2
## 145                    Spanish   IMDB.Score 2
## 146                    English   IMDB.Score 2
## 147                    English   IMDB.Score 2
## 148                      Hindi   IMDB.Score 2
## 149                    English   IMDB.Score 2
## 150                    English   IMDB.Score 2
## 151                    English   IMDB.Score 2
## 152                       Thai   IMDB.Score 2
## 153                    English   IMDB.Score 2
## 154                    English   IMDB.Score 2
## 155                     Polish   IMDB.Score 2
## 156                    English   IMDB.Score 2
## 157                    English   IMDB.Score 2
## 158                    English   IMDB.Score 2
## 159                    English   IMDB.Score 2
## 160                    English   IMDB.Score 2
## 161                    English   IMDB.Score 2
## 162                    Marathi   IMDB.Score 2
## 163                    English   IMDB.Score 2
## 164                    English   IMDB.Score 2
## 165                    English   IMDB.Score 2
## 166                    English   IMDB.Score 2
## 167                    English   IMDB.Score 2
## 168                    English   IMDB.Score 2
## 169                      Hindi   IMDB.Score 2
## 170                      Hindi   IMDB.Score 2
## 171                    English   IMDB.Score 2
## 172                    English   IMDB.Score 2
## 173                    English   IMDB.Score 2
## 174                    English   IMDB.Score 2
## 175                    English   IMDB.Score 2
## 176                    English   IMDB.Score 2
## 177                      Hindi   IMDB.Score 2
## 178                 Portuguese   IMDB.Score 2
## 179                     German   IMDB.Score 2
## 180                    English   IMDB.Score 2
## 181                    English   IMDB.Score 2
## 182                    English   IMDB.Score 2
## 183                    English   IMDB.Score 2
## 184                    English   IMDB.Score 2
## 185                    English   IMDB.Score 2
## 186                    English   IMDB.Score 2
## 187                      Dutch   IMDB.Score 2
## 188                    English   IMDB.Score 2
## 189                    English   IMDB.Score 2
## 190                     German   IMDB.Score 2
## 191                    Spanish   IMDB.Score 2
## 192                    English   IMDB.Score 2
## 193                    English   IMDB.Score 2
## 194                    English   IMDB.Score 2
## 195                    English   IMDB.Score 2
## 196                    English   IMDB.Score 2
## 197                    English   IMDB.Score 2
## 198                    English   IMDB.Score 2
## 199                    English   IMDB.Score 2
## 200                    English   IMDB.Score 2
## 201                      Hindi   IMDB.Score 2
## 202                     French   IMDB.Score 2
## 203                    English   IMDB.Score 2
## 204                    English   IMDB.Score 2
## 205                    English   IMDB.Score 2
## 206                    English   IMDB.Score 2
## 207                    Italian   IMDB.Score 2
## 208                    English   IMDB.Score 2
## 209                    Italian   IMDB.Score 2
## 210                    English   IMDB.Score 2
## 211                      Hindi   IMDB.Score 2
## 212                    English   IMDB.Score 2
## 213                    English   IMDB.Score 2
## 214                    English   IMDB.Score 2
## 215                    English   IMDB.Score 2
## 216                    English   IMDB.Score 2
## 217                    English   IMDB.Score 2
## 218                    English   IMDB.Score 2
## 219                    English   IMDB.Score 2
## 220                    English   IMDB.Score 2
## 221                    English   IMDB.Score 2
## 222                    English   IMDB.Score 2
## 223                    English   IMDB.Score 2
## 224                    English   IMDB.Score 2
## 225                    English   IMDB.Score 2
## 226                    English   IMDB.Score 2
## 227                    English   IMDB.Score 2
## 228                    English   IMDB.Score 2
## 229                    English   IMDB.Score 2
## 230                    English   IMDB.Score 2
## 231                    English   IMDB.Score 2
## 232                    English   IMDB.Score 2
## 233                    English   IMDB.Score 2
## 234                     French   IMDB.Score 2
## 235                    English   IMDB.Score 2
## 236                    Turkish   IMDB.Score 2
## 237                 Indonesian   IMDB.Score 2
## 238                 Portuguese   IMDB.Score 2
## 239                    English   IMDB.Score 2
## 240                    English   IMDB.Score 2
## 241                    English   IMDB.Score 2
## 242                      Hindi   IMDB.Score 2
## 243                    Spanish   IMDB.Score 2
## 244                    English   IMDB.Score 2
## 245                    English   IMDB.Score 2
## 246                    Italian   IMDB.Score 2
## 247                    Spanish   IMDB.Score 2
## 248                    English   IMDB.Score 2
## 249                 Indonesian   IMDB.Score 2
## 250                    Turkish   IMDB.Score 2
## 251                    English   IMDB.Score 2
## 252                    English   IMDB.Score 2
## 253                     French   IMDB.Score 2
## 254                    English   IMDB.Score 2
## 255                    Spanish   IMDB.Score 2
## 256                    English   IMDB.Score 2
## 257                    English   IMDB.Score 2
## 258                    English   IMDB.Score 2
## 259                    English   IMDB.Score 2
## 260                    English   IMDB.Score 2
## 261                    English   IMDB.Score 2
## 262                    English   IMDB.Score 2
## 263                    English   IMDB.Score 2
## 264            English/Spanish   IMDB.Score 2
## 265                    English   IMDB.Score 2
## 266                    English   IMDB.Score 2
## 267                    English   IMDB.Score 2
## 268                    English   IMDB.Score 2
## 269                    English   IMDB.Score 2
## 270                    English   IMDB.Score 2
## 271                    English   IMDB.Score 2
## 272                 Portuguese   IMDB.Score 2
## 273                     French   IMDB.Score 2
## 274                 Indonesian   IMDB.Score 2
## 275                      Hindi   IMDB.Score 2
## 276                    English   IMDB.Score 2
## 277                    Spanish   IMDB.Score 2
## 278                    English   IMDB.Score 2
## 279                 Portuguese   IMDB.Score 2
## 280                    English   IMDB.Score 2
## 281                    English   IMDB.Score 2
## 282                    English   IMDB.Score 2
## 283                    English   IMDB.Score 2
## 284                    English   IMDB.Score 2
## 285                   Japanese   IMDB.Score 2
## 286                    English   IMDB.Score 2
## 287                    English   IMDB.Score 2
## 288           English/Japanese   IMDB.Score 2
## 289                     Korean   IMDB.Score 2
## 290                    English   IMDB.Score 2
## 291                    English   IMDB.Score 2
## 292                    English   IMDB.Score 2
## 293                     French   IMDB.Score 2
## 294                    English   IMDB.Score 2
## 295                    English   IMDB.Score 2
## 296            English/Spanish   IMDB.Score 2
## 297                    Spanish   IMDB.Score 2
## 298                    English   IMDB.Score 2
## 299                    English   IMDB.Score 2
## 300                    English   IMDB.Score 2
## 301                     German   IMDB.Score 2
## 302                    English   IMDB.Score 2
## 303                 Indonesian   IMDB.Score 2
## 304                    English   IMDB.Score 2
## 305                    English   IMDB.Score 2
## 306                    English   IMDB.Score 2
## 307                    English   IMDB.Score 2
## 308                     French   IMDB.Score 2
## 309                    English   IMDB.Score 2
## 310                    English   IMDB.Score 2
## 311                    English   IMDB.Score 2
## 312                 Indonesian   IMDB.Score 2
## 313                    English   IMDB.Score 2
## 314                    Spanish   IMDB.Score 2
## 315                    English   IMDB.Score 2
## 316                    English   IMDB.Score 2
## 317            Spanish/Catalan   IMDB.Score 2
## 318                    English   IMDB.Score 2
## 319                    English   IMDB.Score 2
## 320                    English   IMDB.Score 2
## 321            English/Spanish   IMDB.Score 2
## 322                    English   IMDB.Score 2
## 323                    English   IMDB.Score 2
## 324                   Japanese   IMDB.Score 2
## 325                     French   IMDB.Score 2
## 326                    English   IMDB.Score 2
## 327                    English   IMDB.Score 2
## 328                      Hindi   IMDB.Score 2
## 329                    English   IMDB.Score 2
## 330                    English   IMDB.Score 2
## 331                    English   IMDB.Score 2
## 332                    English   IMDB.Score 2
## 333                    English   IMDB.Score 2
## 334                    English   IMDB.Score 2
## 335            English/Swedish   IMDB.Score 2
## 336                      Hindi   IMDB.Score 2
## 337                    English   IMDB.Score 2
## 338                    English   IMDB.Score 2
## 339                    Spanish   IMDB.Score 2
## 340                    English   IMDB.Score 2
## 341                     French   IMDB.Score 2
## 342                    English   IMDB.Score 2
## 343                    English   IMDB.Score 2
## 344 English/Taiwanese/Mandarin   IMDB.Score 2
## 345                    English   IMDB.Score 2
## 346                    English   IMDB.Score 2
## 347                    English   IMDB.Score 2
## 348                    English   IMDB.Score 2
## 349                      Hindi   IMDB.Score 2
## 350                    Spanish   IMDB.Score 2
## 351                    Spanish   IMDB.Score 2
## 352                    English   IMDB.Score 2
## 353                    English   IMDB.Score 2
## 354                    English   IMDB.Score 2
## 355                      Hindi   IMDB.Score 2
## 356                    English   IMDB.Score 2
## 357                    English   IMDB.Score 2
## 358                    English   IMDB.Score 2
## 359                     Korean   IMDB.Score 2
## 360                    English   IMDB.Score 2
## 361                    English   IMDB.Score 2
## 362                    Spanish   IMDB.Score 2
## 363                    English   IMDB.Score 2
## 364                    English   IMDB.Score 2
## 365                   Japanese   IMDB.Score 2
## 366                      Hindi   IMDB.Score 2
## 367                    English   IMDB.Score 2
## 368                    English   IMDB.Score 2
## 369                   Japanese   IMDB.Score 2
## 370                    English   IMDB.Score 2
## 371                    English   IMDB.Score 2
## 372                    English   IMDB.Score 2
## 373                    English   IMDB.Score 2
## 374                    English   IMDB.Score 2
## 375                    English   IMDB.Score 2
## 376               Thia/English   IMDB.Score 2
## 377                    English   IMDB.Score 2
## 378                 Portuguese   IMDB.Score 2
## 379                   Japanese   IMDB.Score 2
## 380                    English   IMDB.Score 2
## 381                    English   IMDB.Score 2
## 382                    English   IMDB.Score 2
## 383                     Korean   IMDB.Score 2
## 384                    Turkish   IMDB.Score 2
## 385                    Spanish   IMDB.Score 2
## 386                    English   IMDB.Score 2
## 387                    English   IMDB.Score 2
## 388                    English   IMDB.Score 2
## 389                      Hindi   IMDB.Score 2
## 390                    English   IMDB.Score 2
## 391                    Spanish   IMDB.Score 2
## 392                    English   IMDB.Score 2
## 393                    Spanish   IMDB.Score 2
## 394                    English   IMDB.Score 2
## 395           English/Mandarin   IMDB.Score 2
## 396                    English   IMDB.Score 2
## 397                    English   IMDB.Score 2
## 398                      Hindi   IMDB.Score 2
## 399                    English   IMDB.Score 2
## 400                    English   IMDB.Score 2
## 401                     French   IMDB.Score 2
## 402                    English   IMDB.Score 2
## 403                    English   IMDB.Score 2
## 404                    English   IMDB.Score 2
## 405                    English   IMDB.Score 2
## 406                      Hindi   IMDB.Score 2
## 407                    English   IMDB.Score 2
## 408                    English   IMDB.Score 2
## 409                    Italian   IMDB.Score 2
## 410                    English   IMDB.Score 2
## 411                   Georgian   IMDB.Score 2
## 412                    English   IMDB.Score 2
## 413                     French   IMDB.Score 2
## 414                      Hindi   IMDB.Score 2
## 415                    English   IMDB.Score 2
## 416                     French   IMDB.Score 2
## 417                    English   IMDB.Score 2
## 418                    English   IMDB.Score 2
## 419                    English   IMDB.Score 2
## 420                 Portuguese   IMDB.Score 2
## 421                    English   IMDB.Score 2
## 422                    English   IMDB.Score 2
## 423                    English   IMDB.Score 2
## 424                      Hindi   IMDB.Score 2
## 425                    English   IMDB.Score 2
## 426                    English   IMDB.Score 2
## 427                    English   IMDB.Score 2
## 428                    English   IMDB.Score 2
## 429                    English   IMDB.Score 2
## 430                    English   IMDB.Score 2
## 431                    English   IMDB.Score 2
## 432                    English   IMDB.Score 2
## 433                    English   IMDB.Score 2
## 434                    English   IMDB.Score 2
## 435                    English   IMDB.Score 2
## 436                    English   IMDB.Score 2
## 437                    Spanish   IMDB.Score 2
## 438                    Spanish   IMDB.Score 2
## 439                    English   IMDB.Score 2
## 440                    English   IMDB.Score 2
## 441                    English   IMDB.Score 2
## 442                    English   IMDB.Score 2
## 443                    English   IMDB.Score 2
## 444                    English   IMDB.Score 2
## 445                    English   IMDB.Score 2
## 446                    English   IMDB.Score 2
## 447                    English   IMDB.Score 2
## 448                    Italian   IMDB.Score 2
## 449                    English   IMDB.Score 2
## 450                    English   IMDB.Score 2
## 451                 Indonesian   IMDB.Score 2
## 452                    English   IMDB.Score 2
## 453                    English   IMDB.Score 2
## 454                    English   IMDB.Score 2
## 455                    English   IMDB.Score 2
## 456                    English   IMDB.Score 2
## 457                    English   IMDB.Score 2
## 458                    English   IMDB.Score 2
## 459                    Spanish   IMDB.Score 2
## 460                    English   IMDB.Score 2
## 461                    English   IMDB.Score 2
## 462                      Dutch   IMDB.Score 2
## 463                    English   IMDB.Score 2
## 464                    Spanish   IMDB.Score 2
## 465                    English   IMDB.Score 2
## 466                    English   IMDB.Score 2
## 467                    English   IMDB.Score 2
## 468                    English   IMDB.Score 2
## 469                    English   IMDB.Score 2
## 470                    English   IMDB.Score 2
## 471                    English   IMDB.Score 2
## 472                    English   IMDB.Score 2
## 473                    English   IMDB.Score 2
## 474                    Bengali   IMDB.Score 2
## 475                    English   IMDB.Score 2
## 476                    English   IMDB.Score 2
## 477                    English   IMDB.Score 2
## 478                    English   IMDB.Score 2
## 479                    English   IMDB.Score 2
## 480                    English   IMDB.Score 2
## 481                    English   IMDB.Score 2
## 482       Khmer/English/French   IMDB.Score 2
## 483                    English   IMDB.Score 2
## 484                    English   IMDB.Score 2
## 485                    English   IMDB.Score 2
## 486              English/Hindi   IMDB.Score 2
## 487                      Hindi   IMDB.Score 2
## 488                    English   IMDB.Score 2
## 489                    English   IMDB.Score 2
## 490                    Spanish   IMDB.Score 2
## 491                      Tamil   IMDB.Score 2
## 492                      Hindi   IMDB.Score 2
## 493                    English   IMDB.Score 2
## 494                    Marathi   IMDB.Score 2
## 495                 Portuguese   IMDB.Score 2
## 496                    English   IMDB.Score 2
## 497                    English   IMDB.Score 2
## 498                    English   IMDB.Score 2
## 499                    English   IMDB.Score 2
## 500                    English   IMDB.Score 2
## 501                    English   IMDB.Score 2
## 502                    English   IMDB.Score 2
## 503                    English   IMDB.Score 2
## 504                    English   IMDB.Score 2
## 505                    Spanish   IMDB.Score 2
## 506            Spanish/English   IMDB.Score 2
## 507                    English   IMDB.Score 2
## 508             English/Korean   IMDB.Score 2
## 509                    Italian   IMDB.Score 2
## 510                      Hindi   IMDB.Score 2
## 511            English/Spanish   IMDB.Score 2
## 512                    English   IMDB.Score 2
## 513             English/Arabic   IMDB.Score 2
## 514                    English   IMDB.Score 2
## 515           English/Mandarin   IMDB.Score 2
## 516            English/Russian   IMDB.Score 2
## 517                    English   IMDB.Score 2
## 518                    English   IMDB.Score 2
## 519                    English   IMDB.Score 2
## 520                    English   IMDB.Score 2
## 521                    English   IMDB.Score 2
## 522                    English   IMDB.Score 2
## 523                    English   IMDB.Score 2
## 524                    English   IMDB.Score 2
## 525              English/Hindi   IMDB.Score 2
## 526                    English   IMDB.Score 2
## 527                    English   IMDB.Score 2
## 528                    English   IMDB.Score 2
## 529                    English   IMDB.Score 2
## 530                    English   IMDB.Score 2
## 531                    English   IMDB.Score 2
## 532                    English   IMDB.Score 2
## 533                    English   IMDB.Score 2
## 534                     Korean   IMDB.Score 2
## 535                    English   IMDB.Score 2
## 536                    English   IMDB.Score 2
## 537                    English   IMDB.Score 2
## 538                    English   IMDB.Score 2
## 539                    English   IMDB.Score 2
## 540                    English   IMDB.Score 2
## 541                    English   IMDB.Score 2
## 542                    English   IMDB.Score 2
## 543                    English   IMDB.Score 2
## 544                      Hindi   IMDB.Score 2
## 545                    English   IMDB.Score 2
## 546                    English   IMDB.Score 2
## 547                    English   IMDB.Score 2
## 548                    English   IMDB.Score 2
## 549                    English   IMDB.Score 2
## 550                    English   IMDB.Score 2
## 551                    English   IMDB.Score 2
## 552                      Hindi   IMDB.Score 2
## 553                    English   IMDB.Score 2
## 554               English/Akan   IMDB.Score 2
## 555                    English   IMDB.Score 2
## 556                    English   IMDB.Score 2
## 557                    English   IMDB.Score 2
## 558                    English   IMDB.Score 2
## 559                    Spanish   IMDB.Score 2
## 560                    Spanish   IMDB.Score 2
## 561                    English   IMDB.Score 2
## 562                    English   IMDB.Score 2
## 563                    English   IMDB.Score 2
## 564                    English   IMDB.Score 2
## 565                    English   IMDB.Score 2
## 566                    English   IMDB.Score 2
## 567                    English   IMDB.Score 2
## 568                    English   IMDB.Score 2
## 569                    English   IMDB.Score 2
## 570                    English   IMDB.Score 2
## 571                    English   IMDB.Score 2
## 572                    English   IMDB.Score 2
## 573                    English   IMDB.Score 2
## 574                    English   IMDB.Score 2
## 575                    English   IMDB.Score 2
## 576                    Spanish   IMDB.Score 2
## 577                    English   IMDB.Score 2
## 578                    English   IMDB.Score 2
## 579                    English   IMDB.Score 2
## 580                    English   IMDB.Score 2
## 581   English/Ukranian/Russian   IMDB.Score 2
## 582                    English   IMDB.Score 2
## 583                 Portuguese   IMDB.Score 2
## 584                    English   IMDB.Score 2
group_by(df, Runtime = as.factor(Runtime))
## # A tibble: 584 x 6
## # Groups:   Runtime [124]
##    Title                           Genre   Premiere  Runtime IMDB.Score Language
##    <chr>                           <chr>   <chr>     <fct>        <dbl> <chr>   
##  1 Enter the Anime                 Docume~ August 5~ 58             2.5 English~
##  2 Dark Forces                     Thrill~ August 2~ 81             2.6 Spanish 
##  3 The App                         Scienc~ December~ 79             2.6 Italian 
##  4 The Open House                  Horror~ January ~ 94             3.2 English 
##  5 Kaali Khuhi                     Mystery October ~ 90             3.4 Hindi   
##  6 Drive                           Action  November~ 147            3.5 Hindi   
##  7 Leyla Everlasting               Comedy  December~ 112            3.7 Turkish 
##  8 The Last Days of American Crime Heist ~ June 5, ~ 149            3.7 English 
##  9 Paradox                         Musica~ March 23~ 73             3.9 English 
## 10 Sardar Ka Grandson              Comedy  May 18, ~ 139            4.1 Hindi   
## # ... with 574 more rows
group_by(df, IMDB.Score = as.factor(IMDB.Score))
## # A tibble: 584 x 6
## # Groups:   IMDB.Score [54]
##    Title                           Genre   Premiere  Runtime IMDB.Score Language
##    <chr>                           <chr>   <chr>       <int> <fct>      <chr>   
##  1 Enter the Anime                 Docume~ August 5~      58 2.5        English~
##  2 Dark Forces                     Thrill~ August 2~      81 2.6        Spanish 
##  3 The App                         Scienc~ December~      79 2.6        Italian 
##  4 The Open House                  Horror~ January ~      94 3.2        English 
##  5 Kaali Khuhi                     Mystery October ~      90 3.4        Hindi   
##  6 Drive                           Action  November~     147 3.5        Hindi   
##  7 Leyla Everlasting               Comedy  December~     112 3.7        Turkish 
##  8 The Last Days of American Crime Heist ~ June 5, ~     149 3.7        English 
##  9 Paradox                         Musica~ March 23~      73 3.9        English 
## 10 Sardar Ka Grandson              Comedy  May 18, ~     139 4.1        Hindi   
## # ... with 574 more rows
df_matrix = data.matrix(df)
df_matrix
##        Title Genre Premiere Runtime IMDB.Score Language
##   [1,]   148    46       59      58        2.5        7
##   [2,]   121   107       48      81        2.6       30
##   [3,]   436    94       86      79        2.6       21
##   [4,]   503    65      139      94        3.2        3
##   [5,]   245    74      343      90        3.4       19
##   [6,]   137     1      276     147        3.5       19
##   [7,]   256    33       94     112        3.7       38
##   [8,]   482    57      203     149        3.7        3
##   [9,]   331    73      221      73        3.9        3
##  [10,]   381    33      252     139        4.1       19
##  [11,]   383    46       19      58        4.1        3
##  [12,]   446    47      301     112        4.1       24
##  [13,]   573    82      372      97        4.1       20
##  [14,]    33     4      311     101        4.2       25
##  [15,]   285   107      292      90        4.2        3
##  [16,]    27    46       77      25        4.3       30
##  [17,]   181    63      129     144        4.3       19
##  [18,]   485    76      114     115        4.3        3
##  [19,]   567    33      130     102        4.3       24
##  [20,]   124    65       50     100        4.4        3
##  [21,]   196    46      361      64        4.4        3
##  [22,]   385   107      170      97        4.4        3
##  [23,]   395    33       41      99        4.4        3
##  [24,]   465   107      120     120        4.4       19
##  [25,]   536   102       36     105        4.4        3
##  [26,]   155   107      167      89        4.5        3
##  [27,]   243    82       14      97        4.5        2
##  [28,]   392    33      181     107        4.5        3
##  [29,]   497    33      104      99        4.5       16
##  [30,]     7    33       97      95        4.6       21
##  [31,]    26    46      261      37        4.6       11
##  [32,]   218    61      339      89        4.6        3
##  [33,]   333    81      115      83        4.6       16
##  [34,]   340    33       90      46        4.6       29
##  [35,]   349    61      335      85        4.6        3
##  [36,]   511    33      164      88        4.6       21
##  [37,]   564    46      162      86        4.6       16
##  [38,]   163    47      305     105        4.7       15
##  [39,]   230    94      138      95        4.7        3
##  [40,]   389     1      232      80        4.7       16
##  [41,]   404    22       13       4        4.7        3
##  [42,]   441    47      329      93        4.7       21
##  [43,]   565   101       85     100        4.7        3
##  [44,]    97   107       94     106        4.8       18
##  [45,]   105    56      152      97        4.8        3
##  [46,]   292   107      240     106        4.8       19
##  [47,]   306    61      341     103        4.8       28
##  [48,]   423    33      140      80        4.8        3
##  [49,]   492    33        2     101        4.8        3
##  [50,]   518   114       66     119        4.8        3
##  [51,]   139     1       10      80        4.9       16
##  [52,]   158    21       40      89        4.9        3
##  [53,]   204    52      302      94        4.9        3
##  [54,]   453    47      343      93        4.9       30
##  [55,]    28    33      143      96        5.0       29
##  [56,]   210     3      160     113        5.0        3
##  [57,]   269    47      323      86        5.0       20
##  [58,]   351   107      163     100        5.0        3
##  [59,]   414    82      106     102        5.0       28
##  [60,]    85    61      332      86        5.1       27
##  [61,]   103   107      134     104        5.1        3
##  [62,]   104     4       29      88        5.1        3
##  [63,]   138   105       15      97        5.1        3
##  [64,]   175    85      119     105        5.1       20
##  [65,]   481    13      172      90        5.1        3
##  [66,]     1    33      389      99        5.2        3
##  [67,]    43    11       47      10        5.2        3
##  [68,]   128    82      179     106        5.2        3
##  [69,]   134    31      295      98        5.2        3
##  [70,]   156    33      171      94        5.2        3
##  [71,]   165    47      115     112        5.2       26
##  [72,]   180    61      264     117        5.2       36
##  [73,]   185    33      110      70        5.2        3
##  [74,]   192    33      273      81        5.2        3
##  [75,]   211    33      349     103        5.2        3
##  [76,]   220    33      262      94        5.2        3
##  [77,]   366    91      261      98        5.2        3
##  [78,]   379    33        5     131        5.2        3
##  [79,]   387    90      250      87        5.2        3
##  [80,]   416   109      247      60        5.2        3
##  [81,]   418    46      124     112        5.2        3
##  [82,]   425    34      361     102        5.2        3
##  [83,]   440    47      301      99        5.2       21
##  [84,]   528    33       23     116        5.2        3
##  [85,]    16    82      304      92        5.3        3
##  [86,]    58    33       57      83        5.3       16
##  [87,]   120   107       30      97        5.3        3
##  [88,]   191    47       39     112        5.3       19
##  [89,]   228   107      268     116        5.3       30
##  [90,]   498   107      387     102        5.3       16
##  [91,]   535    61       28     121        5.3        3
##  [92,]   543    82      195      95        5.3       16
##  [93,]   574    47        3      93        5.3       30
##  [94,]   580    47       51      92        5.3        3
##  [95,]    12    38      323      98        5.4        3
##  [96,]    15    82       95      85        5.4        3
##  [97,]   129    33      270      78        5.4       30
##  [98,]   133    47      372     120        5.4       19
##  [99,]   171   104      373      92        5.4       18
## [100,]   174     6      221     101        5.4        3
## [101,]   190   107      233     119        5.4       19
## [102,]   226    61      344     101        5.4        3
## [103,]   278    47       14     112        5.4       16
## [104,]   302    33       38      96        5.4        3
## [105,]   325     7      136     114        5.4        3
## [106,]   514    82      286      97        5.4        3
## [107,]   555    87      156     101        5.4       21
## [108,]    23    35       93      56        5.5        3
## [109,]    66    70      336     100        5.5        3
## [110,]   123   107       64      94        5.5       15
## [111,]   179    33       25      94        5.5       29
## [112,]   182    46      326      21        5.5        3
## [113,]   209    33      283     104        5.5       19
## [114,]   247   109      127      63        5.5        3
## [115,]   271    82        2     100        5.5        3
## [116,]   297    95      116     126        5.5        3
## [117,]   314    42      329     106        5.5        3
## [118,]   353   107      106      86        5.5       34
## [119,]   365    79        7     142        5.5       22
## [120,]   415    33      139     108        5.5        3
## [121,]   451    90      123     102        5.5        3
## [122,]   479    82      291      92        5.5        3
## [123,]   487    10      182      83        5.5        3
## [124,]   507    28       37      94        5.5        3
## [125,]   556    33       32      92        5.5        3
## [126,]   577    33      241     103        5.5        3
## [127,]    79    28      315      89        5.6       31
## [128,]    80    33      183      95        5.6        3
## [129,]   136    34      136     103        5.6       29
## [130,]   154    82       55      97        5.6        3
## [131,]   201   107      381     125        5.6        3
## [132,]   272    82      383      91        5.6        3
## [133,]   316    80      192      90        5.6       38
## [134,]   380   109      337      49        5.6        3
## [135,]   483    34      131      98        5.6        3
## [136,]   484    85      124     107        5.6       21
## [137,]   495    90       82     118        5.6        3
## [138,]   508   107      368      94        5.6       30
## [139,]   521    33       48     103        5.6        3
## [140,]   559    64      329      86        5.6        3
## [141,]   575    46        6      83        5.6        3
## [142,]    24    29      226      97        5.7        3
## [143,]    92    86      225      99        5.7       21
## [144,]    98    85       73     104        5.7        3
## [145,]   117    51      356     102        5.7       30
## [146,]   141    45       99      89        5.7        3
## [147,]   144    61      327      98        5.7        3
## [148,]   184    82      352     125        5.7       19
## [149,]   187    47      249      89        5.7        3
## [150,]   259    33      151      94        5.7        3
## [151,]   260    36      353      94        5.7        3
## [152,]   318    46      190      85        5.7       36
## [153,]   323    46       68      34        5.7        3
## [154,]   338     1      159      86        5.7        3
## [155,]   342   107        6      91        5.7       28
## [156,]   461     4      265     108        5.7        3
## [157,]   470    82      287      95        5.7        3
## [158,]   532    78      248     100        5.7        3
## [159,]   533    33      246      90        5.7        3
## [160,]   560   107      103     112        5.7        3
## [161,]   582    33      209      86        5.7        3
## [162,]     4    34      228     124        5.8       26
## [163,]    13    82       72     107        5.8        3
## [164,]    14    82      285      92        5.8        3
## [165,]    34    47      240     121        5.8        3
## [166,]    45    47      276      90        5.8        3
## [167,]    62    27       74     104        5.8        3
## [168,]    88    33       23      92        5.8        3
## [169,]    95    47      203     114        5.8       19
## [170,]   102    47       48      98        5.8       19
## [171,]   151    96      175      95        5.8        3
## [172,]   193    82      230      78        5.8        3
## [173,]   216   107      248     107        5.8        3
## [174,]   255    82      309      92        5.8        3
## [175,]   282    69      318      95        5.8        3
## [176,]   319    82      307      96        5.8        3
## [177,]   347    34      304     118        5.8       19
## [178,]   364    82       30     105        5.8       29
## [179,]   367    89       10      94        5.8       18
## [180,]   371    75       24      52        5.8        3
## [181,]   400    83      387     105        5.8        3
## [182,]   403    45       24      95        5.8        3
## [183,]   409    89       26     100        5.8        3
## [184,]   427    96      201      97        5.8        3
## [185,]   433    33       49      89        5.8        3
## [186,]   438    39      355     102        5.8        3
## [187,]   450    55       98      96        5.8        2
## [188,]   478    82      174     131        5.8        3
## [189,]   509    82        3      89        5.8        3
## [190,]   569    47      279      93        5.8       18
## [191,]   583    82      329     111        5.8       30
## [192,]     8    47       33      75        5.9        3
## [193,]    17   107      137     120        5.9        3
## [194,]    41    97       33      96        5.9        3
## [195,]    54   115      256     148        5.9        3
## [196,]    87    77      284      94        5.9        3
## [197,]   140    74      283     107        5.9        3
## [198,]   170    69      166      32        5.9        3
## [199,]   207    47      126     104        5.9        3
## [200,]   309    46      381      23        5.9        3
## [201,]   283    82      227     111        5.9       19
## [202,]   455   107      227      83        5.9       16
## [203,]   496    46      130      53        5.9        3
## [204,]   512    34      133      95        5.9        3
## [205,]   515    70       67     132        5.9        3
## [206,]   551     4      278      98        5.9        3
## [207,]   553    98      218     108        5.9       21
## [208,]   106    27        4     106        6.0        3
## [209,]   168    47      272     104        6.0       21
## [210,]   221    96      147      90        6.0        3
## [211,]   273    47       62     106        6.0       19
## [212,]   240    47      235      90        6.0        3
## [213,]   294    37      187      97        6.0        3
## [214,]   344   101       40     113        6.0        3
## [215,]   350    88      331     123        6.0        3
## [216,]   448    30      299     115        6.0        3
## [217,]   477    82      242     105        6.0        3
## [218,]   513    82      284     101        6.0        3
## [219,]   542    82      108     102        6.0        3
## [220,]   563   112      263     122        6.0        3
## [221,]     9     1       70     128        6.1        3
## [222,]    70    33      374      82        6.1        3
## [223,]    84    47      208     102        6.1        3
## [224,]    91    46       24      80        6.1        3
## [225,]   126    47      213      94        6.1        3
## [226,]   162    51      149     123        6.1        3
## [227,]   202    84      341     104        6.1        3
## [228,]   203     9      276      85        6.1        3
## [229,]   208    46      269      84        6.1        3
## [230,]   258    33       56     103        6.1        3
## [231,]   267    42      211      95        6.1        3
## [232,]   321    33       45     100        6.1        3
## [233,]   334     8      215      89        6.1        3
## [234,]   372    42      343     116        6.1       16
## [235,]   390    27       10     118        6.1        3
## [236,]   421    47      155      96        6.1       38
## [237,]   431    47        1     114        6.1       20
## [238,]   475   114      277      99        6.1       29
## [239,]   491    82      259      87        6.1        3
## [240,]   499    27      222      92        6.1        3
## [241,]   510    62      261      90        6.1        3
## [242,]   549    47      136      95        6.1       19
## [243,]   557   107       54      96        6.1       30
## [244,]   579    44       61      93        6.1        3
## [245,]    32   100      289      42        6.2        3
## [246,]    60    27      264      92        6.2       21
## [247,]    67    47      149     106        6.2       30
## [248,]   100    47      308     151        6.2        3
## [249,]   113    34       43     101        6.2       20
## [250,]   195    33       36     114        6.2       38
## [251,]   198    97      127      90        6.2        3
## [252,]   225   107      380     115        6.2        3
## [253,]   266   107      192      92        6.2       16
## [254,]   310    13       40      72        6.2        3
## [255,]   312   107      174     139        6.2       30
## [256,]   377    27      221      98        6.2        3
## [257,]   405    82       12      92        6.2        3
## [258,]   412     4      233     111        6.2        3
## [259,]   480    47      362      98        6.2        3
## [260,]   516    46       23     104        6.2        3
## [261,]   561    46       63      95        6.2        3
## [262,]   576    33       34      88        6.2        3
## [263,]     5    66      330     102        6.3        3
## [264,]    22    46      258      30        6.3       11
## [265,]    31    82      205      99        6.3        3
## [266,]    51    62      316     129        6.3        3
## [267,]    69    52      212      87        6.3        3
## [268,]    82   108       81     117        6.3        3
## [269,]    90    50      251     104        6.3        3
## [270,]   108    47       14     111        6.3        3
## [271,]   159    54      192     107        6.3        3
## [272,]   178    33      216      97        6.3       29
## [273,]   217    82        4      98        6.3       16
## [274,]   241    47      148      90        6.3       20
## [275,]   296    47       12     101        6.3       19
## [276,]   301    46      264      72        6.3        3
## [277,]   308    47      298      83        6.3       30
## [278,]   339     1      144     118        6.3        3
## [279,]   341    33       79      44        6.3       29
## [280,]   378   111       17     113        6.3        3
## [281,]   398    43      206      86        6.3        3
## [282,]   410    93      101     108        6.3        3
## [283,]   437   106      319      85        6.3        3
## [284,]   460    94      231     102        6.3        3
## [285,]   463    47      313     151        6.3       22
## [286,]   486    34      327      98        6.3        3
## [287,]   488    46      228      87        6.3        3
## [288,]   506    42      237     120        6.3        7
## [289,]   539   107       20     134        6.3       24
## [290,]   541    82      109     109        6.3        3
## [291,]   548    46       53      85        6.3        3
## [292,]   554    47      227     103        6.3        3
## [293,]    46    46       60      94        6.4       16
## [294,]    52    41       80      97        6.4        3
## [295,]    55    96      367      88        6.4        3
## [296,]    75    46      379      37        6.4       11
## [297,]   107    72       83     112        6.4       30
## [298,]   166    97      230     102        6.4        3
## [299,]   169   107      313     100        6.4        3
## [300,]   231    47      113      96        6.4        3
## [301,]   232    82      112     113        6.4       18
## [302,]   238    46       46      16        6.4        3
## [303,]   254    85      106     119        6.4       20
## [304,]   295    46       27      97        6.4        3
## [305,]   300    46       69      81        6.4        3
## [306,]   303    34      375      98        6.4        3
## [307,]   326    20      334      95        6.4        3
## [308,]   417    47      317      96        6.4       16
## [309,]   419    46      366     107        6.4        3
## [310,]   422    15      380      41        6.4        3
## [311,]   424    46      212      87        6.4        3
## [312,]   468    34      135     101        6.4       20
## [313,]   493    46      273      97        6.4        3
## [314,]   501   107      224     103        6.4       30
## [315,]   531    19       18      90        6.4        3
## [316,]   550     3      210     125        6.4        3
## [317,]   552    46      381     116        6.4       32
## [318,]   562    47      235      99        6.4        3
## [319,]   571     5      330      82        6.4        3
## [320,]   572    82      128      97        6.4        3
## [321,]    11    46      340      28        6.5       11
## [322,]    36    80      121     108        6.5        3
## [323,]    37    47       54      93        6.5        3
## [324,]    38    24      217      74        6.5       22
## [325,]    50    46      219      60        6.5       16
## [326,]    89    17       67       9        6.5        3
## [327,]    93    46       11      21        6.5        3
## [328,]    96    33      271     100        6.5       19
## [329,]   116   113      186     155        6.5        3
## [330,]   135    46       35      55        6.5        3
## [331,]   149    72      198     123        6.5        3
## [332,]   176    65      382     103        6.5        3
## [333,]   200   107      343      93        6.5        3
## [334,]   235    53      282     119        6.5        3
## [335,]   257    46      187      40        6.5       12
## [336,]   275    47      188     120        6.5       19
## [337,]   289    47      275      98        6.5        3
## [338,]   290     8       97     104        6.5        3
## [339,]   305    47      196      91        6.5       30
## [340,]   307    46      193      95        6.5        3
## [341,]   327    92      245     101        6.5       16
## [342,]   393    82      188     105        6.5        3
## [343,]   471    33      176      83        6.5        3
## [344,]   538    47        2      91        6.5       13
## [345,]   547    80       17      83        6.5        3
## [346,]   566    49      141      17        6.5        3
## [347,]    59    58      226      86        6.6        3
## [348,]    74    78       79     124        6.6        3
## [349,]    83    61      196      94        6.6       19
## [350,]   112    82      120     102        6.6       30
## [351,]   145    80      204     118        6.6       30
## [352,]   212    46       44      79        6.6        3
## [353,]   215    78      386     134        6.6        3
## [354,]   233    46      335     126        6.6        3
## [355,]   287    47      275      98        6.6       19
## [356,]   352    46      201      89        6.6        3
## [357,]   360    46       97      58        6.6        3
## [358,]   396    46      296      83        6.6        3
## [359,]   408    90      124     136        6.6       24
## [360,]   434    46       97      98        6.6        3
## [361,]   435    99      362     114        6.6        3
## [362,]   452    42       46      99        6.6       30
## [363,]   517    99      180     130        6.6        3
## [364,]   570    46      136      32        6.6        3
## [365,]    25    23      190     104        6.7       22
## [366,]    29    47        8     142        6.7       19
## [367,]    53    12        8      92        6.7        3
## [368,]    73    46      288      86        6.7        3
## [369,]    77    24      254     106        6.7       22
## [370,]    78    47      267      95        6.7        3
## [371,]   110    46      189      91        6.7        3
## [372,]   111    46      132      89        6.7        3
## [373,]   152     1       21     117        6.7        3
## [374,]   186    46       67      90        6.7        3
## [375,]   199    47      298     117        6.7        3
## [376,]   206    46      365      80        6.7       37
## [377,]   224    47      122      87        6.7        3
## [378,]   242    33       91     101        6.7       29
## [379,]   261    46      340      19        6.7       22
## [380,]   279    85      124     106        6.7        3
## [381,]   286   110      125      54        6.7        3
## [382,]   291    47      229     111        6.7        3
## [383,]   304    47       36     132        6.7       24
## [384,]   330    47      209      97        6.7       38
## [385,]   332    46      157     106        6.7       30
## [386,]   426    34      177     111        6.7        3
## [387,]   502   103      158     124        6.7        3
## [388,]   546    46      165     116        6.7        3
## [389,]   558    47      327     112        6.7       19
## [390,]     6    47      312     144        6.8        3
## [391,]    10    47      339      76        6.8       30
## [392,]    18    26      146     101        6.8        3
## [393,]    19    46      218      92        6.8       30
## [394,]    20    46      376      19        6.8        3
## [395,]    35    46      270      39        6.8        9
## [396,]    39    82      271     102        6.8        3
## [397,]    65    46      274      89        6.8        3
## [398,]   262    33       56     105        6.8       19
## [399,]    86   107      201     101        6.8        3
## [400,]   125    33       88      70        6.8        3
## [401,]   183    46      370      96        6.8       16
## [402,]   194    46      243      85        6.8        3
## [403,]   197    46      357      39        6.8        3
## [404,]   284    46       15      79        6.8        3
## [405,]   382    46      290      73        6.8        3
## [406,]   391    47      329     114        6.8       19
## [407,]   444    47      385     121        6.8        3
## [408,]   445    11      385      28        6.8        3
## [409,]   489    47      282      95        6.8       21
## [410,]   505    47      287     122        6.8        3
## [411,]   525    46      128      23        6.8       17
## [412,]   544    47      161     107        6.8        3
## [413,]   545    46      153      98        6.8       16
## [414,]    30   107       84     108        6.9       19
## [415,]    40    46      384      92        6.9        3
## [416,]    71    46      350     100        6.9       16
## [417,]    72    46      207      97        6.9        3
## [418,]   109    17       89       7        6.9        3
## [419,]   219    47      118      96        6.9        3
## [420,]   253    46      253     100        6.9       29
## [421,]   280    27       94     132        6.9        3
## [422,]   322    80      382     103        6.9        3
## [423,]   324    59      310     121        6.9        3
## [424,]   329    34      226     114        6.9       19
## [425,]   361    46      316      57        6.9        3
## [426,]   388    46      128      95        6.9        3
## [427,]   411    46      202      83        6.9        3
## [428,]   449    46      158      17        6.9        3
## [429,]   467    80      240     105        6.9        3
## [430,]   469    42      228     131        6.9        3
## [431,]   490    35      260      30        6.9        3
## [432,]   494    34      319     112        6.9        3
## [433,]   160    46      316      86        7.0        3
## [434,]   173    46      377     100        7.0        3
## [435,]   214    11      303      14        7.0        3
## [436,]   248    46      319     109        7.0        3
## [437,]   264    46      288      28        7.0       30
## [438,]   265    46      364      64        7.0       30
## [439,]   276    47       76      94        7.0        3
## [440,]   277    11       76      31        7.0        3
## [441,]   320    46      214      99        7.0        3
## [442,]   335    46      117     108        7.0        3
## [443,]   354    46       22      48        7.0        3
## [444,]   356    46      250      84        7.0        3
## [445,]   357    46      220      70        7.0        3
## [446,]   362    46      353      27        7.0        3
## [447,]   370    14       62      45        7.0        3
## [448,]   376    33      102     117        7.0       21
## [449,]   447    32      294     104        7.0        3
## [450,]   458    27      220     108        7.0        3
## [451,]   500     3      328     121        7.0       20
## [452,]     3    11      145      36        7.1        3
## [453,]    47    13      304      30        7.1        3
## [454,]    48    13       65      47        7.1        3
## [455,]    64    47      191     110        7.1        3
## [456,]    99    46       18      92        7.1        3
## [457,]   118    46      301      80        7.1        3
## [458,]   127    68      328      49        7.1        3
## [459,]   143    46       87      73        7.1       30
## [460,]   147    46      272      40        7.1        3
## [461,]   150    46      354      96        7.1        3
## [462,]   161    42      248     106        7.1        2
## [463,]   188    46       16      97        7.1        3
## [464,]   189    46      337      94        7.1       30
## [465,]   239    46      263      78        7.1        3
## [466,]   246    46      371      81        7.1        3
## [467,]   250    46      239      87        7.1        3
## [468,]   268    75      281      91        7.1        3
## [469,]   298    46      215      91        7.1        3
## [470,]   317    46      330      95        7.1        3
## [471,]   337    47      154     126        7.1        3
## [472,]   348    46       33      31        7.1        3
## [473,]   359    46      287      58        7.1        3
## [474,]   375    46      323      41        7.1        1
## [475,]   456    78      368     138        7.1        3
## [476,]   457    47      149     112        7.1        3
## [477,]   466    46      173     114        7.1        3
## [478,]   530    47      142     125        7.1        3
## [479,]   540    82       42      99        7.1        3
## [480,]    44    46      385      82        7.2        3
## [481,]    57    46      378      98        7.2        3
## [482,]   167    47      363     136        7.2       23
## [483,]   172    46      138      97        7.2        3
## [484,]   227    46      339     107        7.2        3
## [485,]   251    46        2      92        7.2        3
## [486,]   252    46      234      39        7.2        6
## [487,]   270    82      111     133        7.2       19
## [488,]   328    48      115      89        7.2        3
## [489,]   343    47      346     124        7.2        3
## [490,]   394    40      327      99        7.2       30
## [491,]   406    47      238     101        7.2       35
## [492,]   407    42      138      97        7.2       19
## [493,]   432    33      352     124        7.2        3
## [494,]   459    47       31     129        7.2       26
## [495,]   462    46      191     121        7.2       29
## [496,]   476    60      276     140        7.2        3
## [497,]   519    67      342      13        7.2        3
## [498,]   520   111      348     108        7.2        3
## [499,]   584    46       37      11        7.2        3
## [500,]   132    27      335     118        7.3        3
## [501,]   142    42      313     121        7.3        3
## [502,]   153    46      359      24        7.3        3
## [503,]   157    46      169     100        7.3        3
## [504,]   177    46      244     101        7.3        3
## [505,]   213    47      266     105        7.3       30
## [506,]   293    46      184      96        7.3       33
## [507,]   311    13      320      47        7.3        3
## [508,]   313     2      200     121        7.3        8
## [509,]   315    42      358     100        7.3       21
## [510,]   346   107      181     149        7.3       19
## [511,]   355    46      131      64        7.3       11
## [512,]   358    46      127      64        7.3        3
## [513,]   386    46      341     114        7.3        5
## [514,]   401    17      236      15        7.3        3
## [515,]   402    46      321      79        7.3        9
## [516,]   429    46       26      90        7.3       10
## [517,]   439   114      284     132        7.3        3
## [518,]   454    46      347     105        7.3        3
## [519,]   464    34      194      97        7.3        3
## [520,]   504    46      257      83        7.3        3
## [521,]    42    46       47     110        7.4        3
## [522,]   164    46      276      39        7.4        3
## [523,]   263    46      382      40        7.4        3
## [524,]   288    46      150      85        7.4        3
## [525,]   336    46      107      26        7.4        6
## [526,]   397    41      299      87        7.4        3
## [527,]   399    46      336      97        7.4        3
## [528,]   442    46      204     118        7.4        3
## [529,]   473    11      300      23        7.4        3
## [530,]   523    46      178      40        7.4        3
## [531,]   534    46      287      98        7.4        3
## [532,]   537    46      168      80        7.4        3
## [533,]    61    41      293     108        7.5        3
## [534,]    76    46      322      79        7.5       24
## [535,]   101    46      387      74        7.5        3
## [536,]   130    46      329      90        7.5        3
## [537,]   205    46        9     137        7.5        3
## [538,]   229    16       41      71        7.5        3
## [539,]   236    46      338      98        7.5        3
## [540,]   237   109       83      70        7.5        3
## [541,]   363    46      360      99        7.5        3
## [542,]   529    46      369      40        7.5        3
## [543,]    56    46      196     104        7.6        3
## [544,]   274    25      280     149        7.6       19
## [545,]   345    46      375     124        7.6        3
## [546,]   373    46      185     144        7.6        3
## [547,]   430    46      327      85        7.6        3
## [548,]   443    46      175     100        7.6        3
## [549,]   522    46      390      94        7.6        3
## [550,]   527    47       78     125        7.6        3
## [551,]   568    46      197      84        7.6        3
## [552,]   581    47      114     117        7.6       19
## [553,]    49    71      199      15        7.7        3
## [554,]    63   113      324     136        7.7        4
## [555,]    81    46       12      76        7.7        3
## [556,]   114    46      224     108        7.7        3
## [557,]   234    46      285      94        7.7        3
## [558,]   244    41      314      90        7.7        3
## [559,]   369    67      105      72        7.7       30
## [560,]   374    47       71     135        7.7       30
## [561,]   223    17      289      12        7.8        3
## [562,]   472    42      300     209        7.8        3
## [563,]   526    47      325     130        7.8        3
## [564,]    21    46       27      82        7.9        3
## [565,]   222    46       58     120        7.9        3
## [566,]   281    47       96     136        7.9        3
## [567,]   474    46      306     112        7.9        3
## [568,]   420    46       79     105        8.0        3
## [569,]    94    46      161      89        8.1        3
## [570,]   299    46      388      85        8.1        3
## [571,]   368    46       52     106        8.1        3
## [572,]     2    46      348     100        8.2        3
## [573,]   131    46      192     107        8.2        3
## [574,]   249    18      283      97        8.2        3
## [575,]   384    46      223      89        8.2        3
## [576,]   524    46      322     109        8.2       30
## [577,]   115    46      297     114        8.3        3
## [578,]   119    46      333      51        8.3        3
## [579,]    68    41      255      85        8.4        3
## [580,]   428    41       92     125        8.4        3
## [581,]   578    46      351      91        8.4       14
## [582,]   413    75       75     153        8.5        3
## [583,]   146    46      100      89        8.6       29
## [584,]   122    46      345      83        9.0        3
inherits(df$Runtime,what = 'A',which=FALSE)
## [1] FALSE
inherits(df$IMDB.Score,what = 'A',which=FALSE)
## [1] FALSE
oldClass(df$Runtime)
## NULL
oldClass(df$IMDB.Score)
## NULL
head(diff(df$Runtime))
## [1]  23  -2  15  -4  57 -35
head(diff(df$IMDB.Score))
## [1] 0.1 0.0 0.6 0.2 0.1 0.2
head(scale(df$Runtime,scale=T))
##             [,1]
## [1,] -1.28151651
## [2,] -0.45303647
## [3,] -0.52507821
## [4,]  0.01523485
## [5,] -0.12884863
## [6,]  1.92434103
head(scale(df$IMDB.Score,scale=T))
##           [,1]
## [1,] -3.851644
## [2,] -3.749525
## [3,] -3.749525
## [4,] -3.136815
## [5,] -2.932579
## [6,] -2.830461
length(df$Runtime)
## [1] 584
head(rep(df$IMDB.Score))
## [1] 2.5 2.6 2.6 3.2 3.4 3.5
dim(df)
## [1] 584   6
head(dexp(df$Runtime, rate = 1, log = FALSE))
## [1] 6.470235e-26 6.639677e-36 4.906095e-35 1.500786e-41 8.194013e-40
## [6] 1.441157e-64
head(dexp(df$IMDB.Score, rate = 1, log = FALSE))
## [1] 0.08208500 0.07427358 0.07427358 0.04076220 0.03337327 0.03019738
head(pexp(df$Runtime, rate = 1, lower.tail = TRUE, log.p = FALSE))
## [1] 1 1 1 1 1 1
head(pexp(df$IMDB.Score, rate = 1, lower.tail = TRUE, log.p = FALSE))
## [1] 0.9179150 0.9257264 0.9257264 0.9592378 0.9666267 0.9698026
head(rexp(df$Runtime))
## [1] 0.09467773 0.01536230 1.05643500 0.33109209 1.02151828 0.54989930
head(dgamma(df$Runtime, shape=1, rate = 1, log = FALSE))
## [1] 6.470235e-26 6.639677e-36 4.906095e-35 1.500786e-41 8.194013e-40
## [6] 1.441157e-64
head(pgamma(df$IMDB.Score, shape=1, rate = 1, lower.tail = TRUE,log.p = FALSE))
## [1] 0.9179150 0.9257264 0.9257264 0.9592378 0.9666267 0.9698026
head(ppois(df$Runtime, lambda=1, log = FALSE))
## [1] 1 1 1 1 1 1
head(qweibull(df$IMDB.Score, shape=1, scale = 1, lower.tail = TRUE, log.p = FALSE))
## Warning in qweibull(df$IMDB.Score, shape = 1, scale = 1, lower.tail = TRUE, :
## NaNs produced
## [1] NaN NaN NaN NaN NaN NaN
head(rcauchy(df$Runtime, location=1, scale=1))
## [1]  0.3074881  0.7824521 -3.9000969 -2.1709073  0.8523320  0.4561444
head(dbeta(df$IMDB.Score, shape1=1, shape2=2, ncp = 1, log = FALSE))
## [1] 0 0 0 0 0 0
head(pt(df$Runtime, df=1, ncp=1, lower.tail = TRUE, log.p = FALSE))
## [1] 0.9851000 0.9893299 0.9890598 0.9908053 0.9903967 0.9941202
head(pt(df$IMDB.Score, df=1, ncp=1, lower.tail = TRUE, log.p = FALSE))
## [1] 0.6844894 0.6946976 0.6946976 0.7450769 0.7585633 0.7648120
head(rf(df$Runtime,df1=1,df2=1,ncp=1))
## [1]   0.59811439   0.34709994   0.06180744 147.10293366   2.56931890
## [6]   1.80436018
head(rf(df$IMDB.Score,df1=1,df2=1,ncp=1))
## [1]  0.08611305 35.18544504 30.12119945  0.74729228  3.75590560  4.30974026
help("rchisq")
## starting httpd help server ... done
head(pbinom(df$Runtime, size=1, prob=.25, log = FALSE))
## [1] 1 1 1 1 1 1
head(pbinom(df$IMDB.Score, size=1, prob=.25, log = FALSE))
## [1] 1 1 1 1 1 1
head(rmultinom(df$Runtime, size=1, prob=0.25))
##      [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12] [,13] [,14]
## [1,]    1    1    1    1    1    1    1    1    1     1     1     1     1     1
##      [,15] [,16] [,17] [,18] [,19] [,20] [,21] [,22] [,23] [,24] [,25] [,26]
## [1,]     1     1     1     1     1     1     1     1     1     1     1     1
##      [,27] [,28] [,29] [,30] [,31] [,32] [,33] [,34] [,35] [,36] [,37] [,38]
## [1,]     1     1     1     1     1     1     1     1     1     1     1     1
##      [,39] [,40] [,41] [,42] [,43] [,44] [,45] [,46] [,47] [,48] [,49] [,50]
## [1,]     1     1     1     1     1     1     1     1     1     1     1     1
##      [,51] [,52] [,53] [,54] [,55] [,56] [,57] [,58]
## [1,]     1     1     1     1     1     1     1     1
head(rmultinom(df$IMDB.Score, size=1, prob=0.25))
##      [,1] [,2]
## [1,]    1    1
head(pgeom(df$Runtime, prob=.25, lower.tail = TRUE, log.p = FALSE))
## [1] 1 1 1 1 1 1
head(pgeom(df$IMDB.Score, prob=.25, lower.tail = TRUE, log.p = FALSE))
## [1] 0.5781250 0.5781250 0.5781250 0.6835938 0.6835938 0.6835938
head(qgeom(df$Runtime, prob=.25, lower.tail = TRUE, log.p = FALSE))
## Warning in qgeom(df$Runtime, prob = 0.25, lower.tail = TRUE, log.p = FALSE):
## NaNs produced
## [1] NaN NaN NaN NaN NaN NaN
head(phyper(df$Runtime, m=1, n=1, k=1, lower.tail = TRUE, log.p = FALSE))
## [1] 1 1 1 1 1 1
head(phyper(df$IMDB.Score, m=1, n=1, k=1, lower.tail = TRUE, log.p = FALSE))
## [1] 1 1 1 1 1 1
head(rlogis(df$Runtime, location=0, scale=1))
## [1] -1.2964926 -2.9781418  1.4273813  0.7136343  1.1132957  1.4639769
head(rlogis(df$IMDB.Score, location=0, scale=1))
## [1]  0.88605602  1.19787271 -0.84412962  0.09206051 -0.51141034  0.10191040
head(rlnorm(df$Runtime, meanlog=0, sdlog=1))
## [1] 1.4519195 0.7780773 2.7320724 0.4102700 1.5366581 0.8204864
head(rlnorm(df$IMDB.Score, meanlog=0, sdlog=1))
## [1] 0.5964878 0.4224457 1.1832922 1.4284140 1.9482916 3.1078919
head(rnbinom(df$Runtime,size = 1,mu=1))
## [1] 0 0 2 1 0 0
head(rnbinom(df$IMDB.Score,size = 1,mu=1))
## [1] 1 0 0 3 0 0
head(punif(df$Runtime, min = 0, max = 1, log = TRUE))
## [1] 0 0 0 0 0 0
head(punif(df$IMDB.Score, min = 0, max = 1, log = TRUE))
## [1] 0 0 0 0 0 0
head(pwilcox(df$Runtime, m=1, n=1, log = FALSE))
## [1] 1 1 1 1 1 1
head(pwilcox(df$IMDB.Score, m=1, n=1, log = FALSE))
## [1] 1 1 1 1 1 1
head(psignrank(df$Runtime, n=1, lower.tail = TRUE, log.p = FALSE))
## [1] 1 1 1 1 1 1
head(psignrank(df$IMDB.Score, n=1, lower.tail = TRUE, log.p = FALSE))
## [1] 1 1 1 1 1 1
factor(df$Title)
##   [1] Enter the Anime                                                                                           
##   [2] Dark Forces                                                                                               
##   [3] The App                                                                                                   
##   [4] The Open House                                                                                            
##   [5] Kaali Khuhi                                                                                               
##   [6] Drive                                                                                                     
##   [7] Leyla Everlasting                                                                                         
##   [8] The Last Days of American Crime                                                                           
##   [9] Paradox                                                                                                   
##  [10] Sardar Ka Grandson                                                                                        
##  [11] Searching for Sheela                                                                                      
##  [12] The Call                                                                                                  
##  [13] Whipped                                                                                                   
##  [14] All Because of You                                                                                        
##  [15] Mercy                                                                                                     
##  [16] After the Raid                                                                                            
##  [17] Ghost Stories                                                                                             
##  [18] The Last Thing He Wanted                                                                                  
##  [19] What Happened to Mr. Cha?                                                                                 
##  [20] Death Note                                                                                                
##  [21] Hello Privilege. It's Me, Chelsea                                                                         
##  [22] Secret Obsession                                                                                          
##  [23] Sextuplets                                                                                                
##  [24] The Girl on the Train                                                                                     
##  [25] Thunder Force                                                                                             
##  [26] Fatal Affair                                                                                              
##  [27] Just Say Yes                                                                                              
##  [28] Seriously Single                                                                                          
##  [29] The Misadventures of Hedi and Cokeman                                                                     
##  [30] 5 Star Christmas                                                                                          
##  [31] After Maria                                                                                               
##  [32] I Am the Pretty Thing That Lives in the House                                                             
##  [33] Paris Is Us                                                                                               
##  [34] Porta dos Fundos: The First Temptation of Christ                                                          
##  [35] Rattlesnake                                                                                               
##  [36] The Players                                                                                               
##  [37] We Are One                                                                                                
##  [38] Finding Agnes                                                                                             
##  [39] IO                                                                                                        
##  [40] Sentinelle                                                                                                
##  [41] Sol Levante                                                                                               
##  [42] The Binding                                                                                               
##  [43] We Can Be Heroes                                                                                          
##  [44] Christmas Crossfire                                                                                       
##  [45] Coin Heist                                                                                                
##  [46] Mrs. Serial Killer                                                                                        
##  [47] Nobody Sleeps in the Woods Tonight                                                                        
##  [48] Take the 10                                                                                               
##  [49] The Main Event                                                                                            
##  [50] The Ridiculous 6                                                                                          
##  [51] Earth and Blood                                                                                           
##  [52] Fearless                                                                                                  
##  [53] Holiday Rush                                                                                              
##  [54] The Day of the Lord                                                                                       
##  [55] Airplane Mode                                                                                             
##  [56] How It Ends                                                                                               
##  [57] Love Like the Falling Rain                                                                                
##  [58] Rebirth                                                                                                   
##  [59] Squared Love                                                                                              
##  [60] Cadaver                                                                                                   
##  [61] Clinical                                                                                                  
##  [62] Coffee & Kareem                                                                                           
##  [63] Dude                                                                                                      
##  [64] Geez & Ann                                                                                                
##  [65] The Larva Island Movie                                                                                    
##  [66] #REALITYHIGH                                                                                              
##  [67] American Factory: A Conversation with the Obamas                                                          
##  [68] Desperados                                                                                                
##  [69] Dolly Parton's Christmas on the Square                                                                    
##  [70] Father of the Year                                                                                        
##  [71] Firebrand                                                                                                 
##  [72] Ghost Lab                                                                                                 
##  [73] Girlfriend's Day                                                                                          
##  [74] Handsome: A Netflix Mystery Movie                                                                         
##  [75] Hubie Halloween                                                                                           
##  [76] Ibiza                                                                                                     
##  [77] Rim of the World                                                                                          
##  [78] Sandy Wexler                                                                                              
##  [79] See You Yesterday                                                                                         
##  [80] Still Laugh-In: The Stars Celebrate                                                                       
##  [81] Strip Down, Rise Up                                                                                       
##  [82] Tall Girl                                                                                                 
##  [83] The Beast                                                                                                 
##  [84] The Week Of                                                                                               
##  [85] A Christmas Prince: The Royal Wedding                                                                     
##  [86] Back to School                                                                                            
##  [87] Dangerous Lies                                                                                            
##  [88] Gunjan Saxena: The Kargil Girl                                                                            
##  [89] Intuition                                                                                                 
##  [90] The Most Assassinated Woman in the World                                                                  
##  [91] Things Heard & Seen                                                                                       
##  [92] To Each, Her Own                                                                                          
##  [93] Who Would You Take to a Deserted Island?                                                                  
##  [94] XOXO                                                                                                      
##  [95] A Babysitter's Guide to Monster Hunting                                                                   
##  [96] A Christmas Prince: The Royal Baby                                                                        
##  [97] Despite Everything                                                                                        
##  [98] Dolly Kitty and Those Twinkling Stars                                                                     
##  [99] Freaks: You're One of Us                                                                                  
## [100] Game Over, Man!                                                                                           
## [101] Guilty                                                                                                    
## [102] In the Tall Grass                                                                                         
## [103] Madame Claude                                                                                             
## [104] Naked                                                                                                     
## [105] Outside the Wire                                                                                          
## [106] The Princess Switch: Switched Again                                                                       
## [107] Under the Riccione Sun                                                                                    
## [108] A Very Murray Christmas                                                                                   
## [109] Been So Long                                                                                              
## [110] Dead Kids                                                                                                 
## [111] Get the Grift                                                                                             
## [112] Ghosts of Sugar Land                                                                                      
## [113] House Arrest                                                                                              
## [114] Kevin Hart's Guide to Black History                                                                       
## [115] Love Wedding Repeat                                                                                       
## [116] Mute                                                                                                      
## [117] Òlòt?ré                                                                                                   
## [118] Red Dot                                                                                                   
## [119] Ride or Die                                                                                               
## [120] Step Sisters                                                                                              
## [121] The Cloverfield Paradox                                                                                   
## [122] The Knight Before Christmas                                                                               
## [123] The Legacy of a Whitetail Deer Hunter                                                                     
## [124] The Package                                                                                               
## [125] Unicorn Store                                                                                             
## [126] Wine Country                                                                                              
## [127] Bomb Scared                                                                                               
## [128] Brahman Naman                                                                                             
## [129] Double Dad                                                                                                
## [130] Falling Inn Love                                                                                          
## [131] Hold the Dark                                                                                             
## [132] Love, Guaranteed                                                                                          
## [133] One-Way to Tomorrow                                                                                       
## [134] Sarah Cooper: Everything's Fine                                                                           
## [135] The Last Laugh                                                                                            
## [136] The Last Paradiso                                                                                         
## [137] The Midnight Sky                                                                                          
## [138] The Paramedic                                                                                             
## [139] The Sleepover                                                                                             
## [140] Vampires vs. the Bronx                                                                                    
## [141] Why Did You Kill Me?                                                                                      
## [142] A Week Away                                                                                               
## [143] Caught by a Wave                                                                                          
## [144] Christmas Inheritance                                                                                     
## [145] Dad Wanted                                                                                                
## [146] El Camino Christmas                                                                                       
## [147] Eli                                                                                                       
## [148] Ginny Weds Sunny                                                                                          
## [149] Good Sam                                                                                                  
## [150] Lionheart                                                                                                 
## [151] Little Evil                                                                                               
## [152] One Take                                                                                                  
## [153] Out of Many, One                                                                                          
## [154] Point Blank                                                                                               
## [155] Prime Time                                                                                                
## [156] The Do-Over                                                                                               
## [157] The Holiday Calendar                                                                                      
## [158] The Woman in the Window                                                                                   
## [159] The Wrong Missy                                                                                           
## [160] Velvet Buzzsaw                                                                                            
## [161] Yes Day                                                                                                   
## [162] 15 August                                                                                                 
## [163] A California Christmas                                                                                    
## [164] A Christmas Prince                                                                                        
## [165] All Day and a Night                                                                                       
## [166] American Son                                                                                              
## [167] Barry                                                                                                     
## [168] Candy Jar                                                                                                 
## [169] Choked: Paisa Bolta Hai                                                                                   
## [170] Class of '83                                                                                              
## [171] Extinction                                                                                                
## [172] Happy Anniversary                                                                                         
## [173] I Am All Girls                                                                                            
## [174] Let It Snow                                                                                               
## [175] Mascots                                                                                                   
## [176] Operation Christmas Drop                                                                                  
## [177] Rajma Chawal                                                                                              
## [178] Rich in Love                                                                                              
## [179] Rising High                                                                                               
## [180] Rodney King                                                                                               
## [181] Sierra Burgess Is a Loser                                                                                 
## [182] Small Crimes                                                                                              
## [183] Special Correspondents                                                                                    
## [184] TAU                                                                                                       
## [185] The After Party                                                                                           
## [186] The Babysitter: Killer Queen                                                                              
## [187] The Claus Family                                                                                          
## [188] The Kissing Booth 2                                                                                       
## [189] The Perfect Date                                                                                          
## [190] What We Wanted                                                                                            
## [191] You've Got This                                                                                           
## [192] 6 Balloons                                                                                                
## [193] A Fall from Grace                                                                                         
## [194] Amateur                                                                                                   
## [195] Army of the Dead                                                                                          
## [196] Cam                                                                                                       
## [197] Earthquake Bird                                                                                           
## [198] Frankenstein's Monster's Monster, Frankenstein                                                            
## [199] Horse Girl                                                                                                
## [200] Notes from Dunblane: Lesson from a School Shooting                                                        
## [201] Maska                                                                                                     
## [202] The Decline                                                                                               
## [203] The Minimalists: Less Is Now                                                                              
## [204] The Polka King                                                                                            
## [205] The Prom                                                                                                  
## [206] True Memoirs of an International Assassin                                                                 
## [207] Ultras                                                                                                    
## [208] Come Sunday                                                                                               
## [209] Forgive Us Our Debts                                                                                      
## [210] iBoy                                                                                                      
## [211] Lovefucked                                                                                                
## [212] Juanita                                                                                                   
## [213] Murder Mystery                                                                                            
## [214] Project Power                                                                                             
## [215] Rebecca                                                                                                   
## [216] The Christmas Chronicles: Part Two                                                                        
## [217] The Kissing Booth                                                                                         
## [218] The Princess Switch                                                                                       
## [219] To All the Boys: P.S. I Still Love You                                                                    
## [220] War Machine                                                                                               
## [221] 6 Underground                                                                                             
## [222] Between Two Ferns: The Movie                                                                              
## [223] Burning Sands                                                                                             
## [224] Casting JonBenet                                                                                          
## [225] Deidra & Laney Rob a Train                                                                                
## [226] Finding 'Ohana                                                                                            
## [227] Holidate                                                                                                  
## [228] Holiday in the Wild                                                                                       
## [229] Hot Girls Wanted                                                                                          
## [230] Like Father                                                                                               
## [231] Lost Girls                                                                                                
## [232] Otherhood                                                                                                 
## [233] Pee-wee's Big Holiday                                                                                     
## [234] Rogue City                                                                                                
## [235] Sergio                                                                                                    
## [236] Stuck Apart                                                                                               
## [237] Tersanjung the Movie                                                                                      
## [238] The Killer                                                                                                
## [239] The Lovebirds                                                                                             
## [240] The Most Hated Woman in America                                                                           
## [241] The Perfection                                                                                            
## [242] Tribhanga – Tedhi Medhi Crazy                                                                             
## [243] Unknown Origins                                                                                           
## [244] Work It                                                                                                   
## [245] Alien Xmas                                                                                                
## [246] Baggio: The Divine Ponytail                                                                               
## [247] Below Zero                                                                                                
## [248] Citation                                                                                                  
## [249] Crazy Awesome Teachers                                                                                    
## [250] Have You Ever Seen Fireflies?                                                                             
## [251] High Flying Bird                                                                                          
## [252] In the Shadow of the Moon                                                                                 
## [253] Lost Bullet                                                                                               
## [254] Octonauts & the Caves of Sac Actun                                                                        
## [255] Offering to the Storm                                                                                     
## [256] Roxanne Roxanne                                                                                           
## [257] Someone Great                                                                                             
## [258] Spenser Confidential                                                                                      
## [259] The Land of Steady Habits                                                                                 
## [260] The Rachel Divide                                                                                         
## [261] Voyuer                                                                                                    
## [262] Win It All                                                                                                
## [263] 1922                                                                                                      
## [264] A Tale of Two Kitchens                                                                                    
## [265] Alex Strangelove                                                                                          
## [266] Apostle                                                                                                   
## [267] Benji                                                                                                     
## [268] Bright                                                                                                    
## [269] Cargo                                                                                                     
## [270] Concrete Cowboy                                                                                           
## [271] Feel the Beat                                                                                             
## [272] Get the Goat                                                                                              
## [273] I Am Not an Easy Man                                                                                      
## [274] June & Kopi                                                                                               
## [275] Music Teacher                                                                                             
## [276] Nail Bomber: Manhunt                                                                                      
## [277] Notes for My Son                                                                                          
## [278] Polar                                                                                                     
## [279] Porta dos Fundos: The Last Hangover                                                                       
## [280] Sand Castle                                                                                               
## [281] Shimmer Lake                                                                                              
## [282] Spectral                                                                                                  
## [283] The Babysitter                                                                                            
## [284] The Discovery                                                                                             
## [285] The Forest of Love                                                                                        
## [286] The Laundromat                                                                                            
## [287] The Legend of Cocaine Island                                                                              
## [288] The Outsider                                                                                              
## [289] Time to Hunt                                                                                              
## [290] To All the Boys: Always and Forever                                                                       
## [291] Travis Scott: Look Mom I Can Fly                                                                          
## [292] Uncorked                                                                                                  
## [293] Anelka: Misunderstood                                                                                     
## [294] Ariana Grande: Excuse Me, I Love You                                                                      
## [295] ARQ                                                                                                       
## [296] Birders                                                                                                   
## [297] Como Caído del Cielo                                                                                      
## [298] First Match                                                                                               
## [299] Fractured                                                                                                 
## [300] Irreplaceable You                                                                                         
## [301] Isi & Ossi                                                                                                
## [302] John Was Trying to Contact Aliens                                                                         
## [303] Layla Majnun                                                                                              
## [304] Murder to Mercy: The Cyntoia Brown Story                                                                  
## [305] My Own Man                                                                                                
## [306] Nappily Ever After                                                                                        
## [307] Over the Moon                                                                                             
## [308] Street Flow                                                                                               
## [309] Strong Island                                                                                             
## [310] Sturgill Simpson Presents: Sound & Fury                                                                   
## [311] Take Your Pills                                                                                           
## [312] The Heartbreak Club                                                                                       
## [313] The Mars Generation                                                                                       
## [314] The Occupant                                                                                              
## [315] The Willoughbys                                                                                           
## [316] Triple Frontier                                                                                           
## [317] Two Catalonias                                                                                            
## [318] Walk. Ride. Rodeo.                                                                                        
## [319] Wheelman                                                                                                  
## [320] When We First Met                                                                                         
## [321] A 3 Minute Hug                                                                                            
## [322] All the Bright Places                                                                                     
## [323] All Together Now                                                                                          
## [324] Altered Carbon: Resleeved                                                                                 
## [325] Antoine Griezmann: The Making of a Legend                                                                 
## [326] Canvas                                                                                                    
## [327] Chadwick Boseman: Portrait of an Artist                                                                   
## [328] Chopsticks                                                                                                
## [329] Da 5 Bloods                                                                                               
## [330] Dolly Parton: A MusiCares Tribute                                                                         
## [331] Eurovision Song Contest: The Story of Fire Saga                                                           
## [332] Gerald's Game                                                                                             
## [333] His House                                                                                                 
## [334] Jingle Jangle: A Christmas Journey                                                                        
## [335] Life Overtakes Me                                                                                         
## [336] Lust Stories                                                                                              
## [337] Monster                                                                                                   
## [338] Mowgli: Legend of the Jungle                                                                              
## [339] Nobody Knows I'm Here                                                                                     
## [340] Nobody Speak: Trials of the Free Press                                                                    
## [341] Oxygen                                                                                                    
## [342] Set It Up                                                                                                 
## [343] The Incredible Jessica James                                                                              
## [344] Tigertail                                                                                                 
## [345] Tramps                                                                                                    
## [346] What Did Jack Do?                                                                                         
## [347] Bad Trip                                                                                                  
## [348] Bird Box                                                                                                  
## [349] Bulbbul                                                                                                   
## [350] Crazy About Her                                                                                           
## [351] Elisa & Marcela                                                                                           
## [352] I'll Sleep When I'm Dead                                                                                  
## [353] I'm Thinking of Ending Things                                                                             
## [354] It Takes a Lunatic                                                                                        
## [355] Milestone                                                                                                 
## [356] Recovery Boys                                                                                             
## [357] ReMastered: Who Killed Jam Master Jay?                                                                    
## [358] Shawn Mendes: In Wonder                                                                                   
## [359] Space Sweepers                                                                                            
## [360] The American Meme                                                                                         
## [361] The Angel                                                                                                 
## [362] The Crimes That Bind                                                                                      
## [363] The Red Sea Diving Resort                                                                                 
## [364] What Would Sophia Loren Do?                                                                               
## [365] A Whisker Away                                                                                            
## [366] Ajeeb Daastaans                                                                                           
## [367] Arlo the Alligator Boy                                                                                    
## [368] Bikram: Yogi, Guru, Predator                                                                              
## [369] Blame!                                                                                                    
## [370] Blue Miracle                                                                                              
## [371] CounterPunch                                                                                              
## [372] Crack: Cocaine, Corruption & Conspiracy                                                                   
## [373] Extraction                                                                                                
## [374] Giving Voice                                                                                              
## [375] Hillbilly Elegy                                                                                           
## [376] Hope Frozen: A Quest to Live Twice                                                                        
## [377] Imperial Dreams                                                                                           
## [378] Just Another Christmas                                                                                    
## [379] Little Miss Sumo                                                                                          
## [380] Malcolm & Marie                                                                                           
## [381] Michael Bolton's Big, Sexy, Valentine's Day Special                                                       
## [382] Moxie                                                                                                     
## [383] Night in Paradise                                                                                         
## [384] Paper Lives                                                                                               
## [385] Parchis: The Documentary                                                                                  
## [386] Tallulah                                                                                                  
## [387] The Old Guard                                                                                             
## [388] Tony Robbins: I Am Not Your Guru                                                                          
## [389] Upstarts                                                                                                  
## [390] 22 July                                                                                                   
## [391] 7 años                                                                                                    
## [392] A Futile and Stupid Gesture                                                                               
## [393] A Life of Speed: The Juan Manuel Fangio Story                                                             
## [394] A Love Song for Latasha                                                                                   
## [395] All in My Family                                                                                          
## [396] Always Be My Maybe                                                                                        
## [397] Becoming                                                                                                  
## [398] Long Live Brij Mohan                                                                                      
## [399] Calibre                                                                                                   
## [400] Death to 2020                                                                                             
## [401] GIMS: On the Record                                                                                       
## [402] Have a Good Trip: Adventures in Psychedelics                                                              
## [403] Heroin(e)                                                                                                 
## [404] Mercury 13                                                                                                
## [405] Saving Capitalism                                                                                         
## [406] Serious Men                                                                                               
## [407] The Boys in the Band                                                                                      
## [408] The Boys in the Band: Something Personal                                                                  
## [409] The Life Ahead                                                                                            
## [410] The Other Side of the Wind                                                                                
## [411] The Trader                                                                                                
## [412] To the Bone                                                                                               
## [413] Tony Parker: The Final Shot                                                                               
## [414] AK vs AK                                                                                                  
## [415] Amanda Knox                                                                                               
## [416] Bigflo & Oil: Hip Hop Frenzy                                                                              
## [417] Biggie: I Got a Story to Tell                                                                             
## [418] Cops and Robbers                                                                                          
## [419] I Don't Feel at Home in This World Anymore                                                                
## [420] Laerte-se                                                                                                 
## [421] Mank                                                                                                      
## [422] Our Souls at Night                                                                                        
## [423] Outlaw King                                                                                               
## [424] Pagglait                                                                                                  
## [425] ReMastered: Who Shot the Sheriff?                                                                         
## [426] Seeing Allred                                                                                             
## [427] Spelling the Dream                                                                                        
## [428] The Claudia Kishi Club                                                                                    
## [429] The Half of It                                                                                            
## [430] The Highwaymen                                                                                            
## [431] The Lonely Island Presents: The Unauthorized Bash Brothers Experience                                     
## [432] The Meyerowitz Stories (New and Selected)                                                                 
## [433] Feminists: What Were They Thinking?                                                                       
## [434] Gaga: Five Foot Two                                                                                       
## [435] I'm No Longer Here: A Discussion with Guillermo del Toro and Alfonso Cuaron                               
## [436] Kingdom of Us                                                                                             
## [437] Lorena, Light-Footed Woman                                                                                
## [438] Los Tigres del Norte at Folsom Prison                                                                     
## [439] Ma Rainey's Black Bottom                                                                                  
## [440] Ma Rainey's Black Bottom: A Legacy Brought to Screen                                                      
## [441] Operation Varsity Blues: The College Admissions Scandal                                                   
## [442] Pele                                                                                                      
## [443] ReMastered: Devil at the Crossroads                                                                       
## [444] ReMastered: The Lion's Share                                                                              
## [445] ReMastered: The Miami Showband Massacre                                                                   
## [446] Resurface                                                                                                 
## [447] Rocko's Modern Life: Static Cling                                                                         
## [448] Rose Island                                                                                               
## [449] The Christmas Chronicles                                                                                  
## [450] The Dirt                                                                                                  
## [451] The Night Comes for Us                                                                                    
## [452] 13th: A Conversation with Oprah Winfrey & Ava DuVernay                                                    
## [453] Angela's Christmas                                                                                        
## [454] Angela's Christmas Wish                                                                                   
## [455] Beats                                                                                                     
## [456] Circus of Books                                                                                           
## [457] Dance Dreams: Hot Chocolate Nutcracker                                                                    
## [458] Derren Brown: Sacrifice                                                                                   
## [459] El Pepe: A Supreme Life                                                                                   
## [460] End Game                                                                                                  
## [461] Evelyn                                                                                                    
## [462] Ferry                                                                                                     
## [463] Grass Is Greener                                                                                          
## [464] Guillermo Vilas: Settling the Score                                                                       
## [465] Joshua: Teenager vs. Superpower                                                                           
## [466] Keith Richards: Under the Influence                                                                       
## [467] Knock Down the House                                                                                      
## [468] Loudon Wainwright III: Surviving Twin                                                                     
## [469] My Beautiful Broken Brain                                                                                 
## [470] One of Us                                                                                                 
## [471] Pieces of a Woman                                                                                         
## [472] Ram Dass, Going Home                                                                                      
## [473] ReMastered: Tricky Dick & the Man in Black                                                                
## [474] Rooting for Roona                                                                                         
## [475] The Devil All the Time                                                                                    
## [476] The Dig                                                                                                   
## [477] The Great Hack                                                                                            
## [478] The White Tiger                                                                                           
## [479] To All the Boys I've Loved Before                                                                         
## [480] American Murder: The Family Next Door                                                                     
## [481] Audrie & Daisy                                                                                            
## [482] First They Killed My Father                                                                               
## [483] Fyre: The Greatest Party That Never Happened                                                              
## [484] Into the Inferno                                                                                          
## [485] LA Originals                                                                                              
## [486] Ladies First                                                                                              
## [487] Love per Square Foot                                                                                      
## [488] Paddleton                                                                                                 
## [489] Private Life                                                                                              
## [490] Seventeen                                                                                                 
## [491] Sometimes                                                                                                 
## [492] Soni                                                                                                      
## [493] The 40-Year-Old Version                                                                                   
## [494] The Disciple                                                                                              
## [495] The Edge of Democracy                                                                                     
## [496] The King                                                                                                  
## [497] The Road to El Camino: A Breaking Bad Movie                                                               
## [498] The Siege of Jadotville                                                                                   
## [499] Zion                                                                                                      
## [500] Dolemite Is My Name                                                                                       
## [501] El Camino: A Breaking Bad Movie                                                                           
## [502] Extremis                                                                                                  
## [503] Father Soldier Son                                                                                        
## [504] Get Me Roger Stone                                                                                        
## [505] I'm No Longer Here                                                                                        
## [506] Mucho Mucho Amor: The Legend of Walter Mercado                                                            
## [507] Octonauts & the Great Barrier Reef                                                                        
## [508] Okja                                                                                                      
## [509] On My Skin                                                                                                
## [510] Raat Akeli Hai                                                                                            
## [511] ReMastered: Massacre at the Stadium                                                                       
## [512] ReMastered: The Two Killings of Sam Cooke                                                                 
## [513] Secrets of the Saqqara Tomb                                                                               
## [514] Sitara: Let Girls Dream                                                                                   
## [515] Sky Ladder: The Art of Cai Guo-Qiang                                                                      
## [516] Team Foxcatcher                                                                                           
## [517] The Ballad of Buster Scruggs                                                                              
## [518] The Death and Life of Marsha P. Johnson                                                                   
## [519] The Fundamentals of Caring                                                                                
## [520] The Other One: The Long Strange Trip of Bob Weir                                                          
## [521] American Factory                                                                                          
## [522] Fire in Paradise                                                                                          
## [523] Long Shot                                                                                                 
## [524] Miss Americana                                                                                            
## [525] Period. End of Sentence.                                                                                  
## [526] Shawn Mendes: Live in Concert                                                                             
## [527] Shirkers                                                                                                  
## [528] The Black Godfather                                                                                       
## [529] The Irishman: In Conversation                                                                             
## [530] The Speed Cubers                                                                                          
## [531] They'll Love Me When I'm Dead                                                                             
## [532] Tig                                                                                                       
## [533] Barbra: The Music, The Mem'ries, The Magic!                                                               
## [534] Blackpink: Light Up the Sky                                                                               
## [535] City of Joy                                                                                               
## [536] Dick Johnson Is Dead                                                                                      
## [537] Homecoming: A Film by Beyonce                                                                             
## [538] Invader Zim: Enter the Florpus                                                                            
## [539] Joan Didion: The Center Will Not Hold                                                                     
## [540] John Mulaney & the Sack Lunch Bunch                                                                       
## [541] Reversing Roe                                                                                             
## [542] The White Helmets                                                                                         
## [543] Athlete A                                                                                                 
## [544] Ludo                                                                                                      
## [545] Quincy                                                                                                    
## [546] Rolling Thunder Revue: A bob Dylan Story by Martin Scorsere                                               
## [547] Tell Me Who I Am                                                                                          
## [548] The Bleeding Edge                                                                                         
## [549] The Social Dilemma                                                                                        
## [550] The Two Popes                                                                                             
## [551] What Happened, Miss Simone?                                                                               
## [552] Yeh Ballet                                                                                                
## [553] Anima                                                                                                     
## [554] Beasts of No Nation                                                                                       
## [555] Brene Brown: The Call to Courage                                                                          
## [556] Crip Camp: A Disability Revolution                                                                        
## [557] Jim & Andy: The Great Beyond - Featuring a Very Special, Contractually Obligated Mention of Tony Cliffton 
## [558] Justin Timberlake + The Tennessee Kids                                                                    
## [559] Road to Roma                                                                                              
## [560] Roma                                                                                                      
## [561] If Anything Happens I Love You                                                                            
## [562] The Irishman                                                                                              
## [563] The Trial of the Chicago 7                                                                                
## [564] A Secret Love                                                                                             
## [565] Icarus                                                                                                    
## [566] Marriage Story                                                                                            
## [567] The Ivory Game                                                                                            
## [568] Struggle: The Life and Lost Art of Szukaiski                                                              
## [569] Chasing Coral                                                                                             
## [570] My Octopus Teacher                                                                                        
## [571] Rising Phoenix                                                                                            
## [572] 13th                                                                                                      
## [573] Disclosure: Trans Lives on Screen                                                                         
## [574] Klaus                                                                                                     
## [575] Seaspiracy                                                                                                
## [576] The Three Deaths of Marisela Escobedo                                                                     
## [577] Cuba and the Cameraman                                                                                    
## [578] Dancing with the Birds                                                                                    
## [579] Ben Platt: Live from Radio City Music Hall                                                                
## [580] Taylor Swift: Reputation Stadium Tour                                                                     
## [581] Winter on Fire: Ukraine's Fight for Freedom                                                               
## [582] Springsteen on Broadway                                                                                   
## [583] Emicida: AmarElo - It's All For Yesterday                                                                 
## [584] David Attenborough: A Life on Our Planet                                                                  
## 584 Levels: #REALITYHIGH ... Zion
factor(df$Genre)
##   [1] Documentary                          Thriller                            
##   [3] Science fiction/Drama                Horror thriller                     
##   [5] Mystery                              Action                              
##   [7] Comedy                               Heist film/Thriller                 
##   [9] Musical/Western/Fantasy              Comedy                              
##  [11] Documentary                          Drama                               
##  [13] Romantic comedy                      Action comedy                       
##  [15] Thriller                             Documentary                         
##  [17] Horror anthology                     Political thriller                  
##  [19] Comedy                               Horror thriller                     
##  [21] Documentary                          Thriller                            
##  [23] Comedy                               Thriller                            
##  [25] Superhero-Comedy                     Thriller                            
##  [27] Romantic comedy                      Comedy                              
##  [29] Comedy                               Comedy                              
##  [31] Documentary                          Horror                              
##  [33] Romance drama                        Comedy                              
##  [35] Horror                               Comedy                              
##  [37] Documentary                          Drama                               
##  [39] Science fiction/Drama                Action                              
##  [41] Anime / Short                        Drama                               
##  [43] Superhero                            Thriller                            
##  [45] Heist                                Thriller                            
##  [47] Horror                               Comedy                              
##  [49] Comedy                               Western                             
##  [51] Action                               Animation/Superhero                 
##  [53] Family film                          Drama                               
##  [55] Comedy                               Action-thriller                     
##  [57] Drama                                Thriller                            
##  [59] Romantic comedy                      Horror                              
##  [61] Thriller                             Action comedy                       
##  [63] Teen comedy-drama                    Romantic drama                      
##  [65] Animation                            Comedy                              
##  [67] Aftershow / Interview                Romantic comedy                     
##  [69] Christmas musical                    Comedy                              
##  [71] Drama                                Horror                              
##  [73] Comedy                               Comedy                              
##  [75] Comedy                               Comedy                              
##  [77] Science fiction adventure            Comedy                              
##  [79] Science fiction                      Variety show                        
##  [81] Documentary                          Comedy-drama                        
##  [83] Drama                                Comedy                              
##  [85] Romantic comedy                      Comedy                              
##  [87] Thriller                             Drama                               
##  [89] Thriller                             Thriller                            
##  [91] Horror                               Romantic comedy                     
##  [93] Drama                                Drama                               
##  [95] Comedy/Fantasy/Family                Romantic comedy                     
##  [97] Comedy                               Drama                               
##  [99] Supernatural drama                   Action/Comedy                       
## [101] Thriller                             Horror                              
## [103] Drama                                Comedy                              
## [105] Action/Science fiction               Romantic comedy                     
## [107] Romantic teenage drama               Comedy / Musical                    
## [109] Musical                              Thriller                            
## [111] Comedy                               Documentary                         
## [113] Comedy                               Variety show                        
## [115] Romantic comedy                      Science fiction/Mystery             
## [117] Crime drama                          Thriller                            
## [119] Psychological thriller drama         Comedy                              
## [121] Science fiction                      Romantic comedy                     
## [123] Adventure/Comedy                     Black comedy                        
## [125] Comedy                               Comedy                              
## [127] Black comedy                         Comedy                              
## [129] Comedy-drama                         Romantic comedy                     
## [131] Thriller                             Romantic comedy                     
## [133] Romance                              Variety show                        
## [135] Comedy-drama                         Romantic drama                      
## [137] Science fiction                      Thriller                            
## [139] Comedy                               Horror comedy                       
## [141] Documentary                          Christian musical                   
## [143] Romantic teen drama                  Romantic drama                      
## [145] Family                               Dark comedy                         
## [147] Horror                               Romantic comedy                     
## [149] Drama                                Comedy                              
## [151] Comedy horror                        Documentary                         
## [153] Documentary                          Action                              
## [155] Thriller                             Action comedy                       
## [157] Romantic comedy                      Psychological thriller              
## [159] Comedy                               Thriller                            
## [161] Comedy                               Comedy-drama                        
## [163] Romantic comedy                      Romantic comedy                     
## [165] Drama                                Drama                               
## [167] Biopic                               Comedy                              
## [169] Drama                                Drama                               
## [171] Science fiction/Thriller             Romantic comedy                     
## [173] Thriller                             Romantic comedy                     
## [175] Mockumentary                         Romantic comedy                     
## [177] Comedy-drama                         Romantic comedy                     
## [179] Satire                               One-man show                        
## [181] Romantic comedy-drama                Dark comedy                         
## [183] Satire                               Science fiction/Thriller            
## [185] Comedy                               Comedy/Horror                       
## [187] Fantasy                              Romantic comedy                     
## [189] Romantic comedy                      Drama                               
## [191] Romantic comedy                      Drama                               
## [193] Thriller                             Sports-drama                        
## [195] Zombie/Heist                         Psychological horror                
## [197] Mystery                              Mockumentary                        
## [199] Drama                                Documentary                         
## [201] Romantic comedy                      Thriller                            
## [203] Documentary                          Comedy-drama                        
## [205] Musical                              Action comedy                       
## [207] Sports film                          Biopic                              
## [209] Drama                                Science fiction/Thriller            
## [211] Drama                                Drama                               
## [213] Comedy mystery                       Superhero                           
## [215] Romantic thriller                    Christmas comedy                    
## [217] Romantic comedy                      Romantic comedy                     
## [219] Romantic comedy                      War-Comedy                          
## [221] Action                               Comedy                              
## [223] Drama                                Documentary                         
## [225] Drama                                Family                              
## [227] Romantic comedy/Holiday              Adventure-romance                   
## [229] Documentary                          Comedy                              
## [231] Crime drama                          Comedy                              
## [233] Adventure                            Crime drama                         
## [235] Biopic                               Drama                               
## [237] Drama                                Western                             
## [239] Romantic comedy                      Biopic                              
## [241] Horror-thriller                      Drama                               
## [243] Thriller                             Dance comedy                        
## [245] Stop Motion                          Biopic                              
## [247] Drama                                Drama                               
## [249] Comedy-drama                         Comedy                              
## [251] Sports-drama                         Thriller                            
## [253] Thriller                             Animation                           
## [255] Thriller                             Biopic                              
## [257] Romantic comedy                      Action comedy                       
## [259] Drama                                Documentary                         
## [261] Documentary                          Comedy                              
## [263] Horror/Crime drama                   Documentary                         
## [265] Romantic comedy                      Horror-thriller                     
## [267] Family film                          Urban fantasy                       
## [269] Drama/Horror                         Drama                               
## [271] Family/Comedy-drama                  Comedy                              
## [273] Romantic comedy                      Drama                               
## [275] Drama                                Documentary                         
## [277] Drama                                Action                              
## [279] Comedy                               War                                 
## [281] Crime thriller                       Science fiction/Action              
## [283] Teen comedy horror                   Science fiction/Drama               
## [285] Drama                                Comedy-drama                        
## [287] Documentary                          Crime drama                         
## [289] Thriller                             Romantic comedy                     
## [291] Documentary                          Drama                               
## [293] Documentary                          Concert Film                        
## [295] Science fiction/Thriller             Documentary                         
## [297] Musical comedy                       Sports-drama                        
## [299] Thriller                             Drama                               
## [301] Romantic comedy                      Documentary                         
## [303] Romantic drama                       Documentary                         
## [305] Documentary                          Comedy-drama                        
## [307] Animation/Musical/Adventure          Drama                               
## [309] Documentary                          Animation / Musicial                
## [311] Documentary                          Comedy-drama                        
## [313] Documentary                          Thriller                            
## [315] Animation/Comedy/Adventure           Action-thriller                     
## [317] Documentary                          Drama                               
## [319] Action thriller                      Romantic comedy                     
## [321] Documentary                          Romance                             
## [323] Drama                                Anime/Science fiction               
## [325] Documentary                          Animation / Short                   
## [327] Documentary                          Comedy                              
## [329] War drama                            Documentary                         
## [331] Musical comedy                       Horror thriller                     
## [333] Thriller                             Family/Christmas musical            
## [335] Documentary                          Drama                               
## [337] Drama                                Adventure                           
## [339] Drama                                Documentary                         
## [341] Science fiction thriller             Romantic comedy                     
## [343] Comedy                               Drama                               
## [345] Romance                              Drama / Short                       
## [347] Hidden-camera prank comedy           Psychological thriller              
## [349] Horror                               Romantic comedy                     
## [351] Romance                              Documentary                         
## [353] Psychological thriller               Documentary                         
## [355] Drama                                Documentary                         
## [357] Documentary                          Documentary                         
## [359] Science fiction                      Documentary                         
## [361] Spy thriller                         Crime drama                         
## [363] Spy thriller                         Documentary                         
## [365] Anime/Fantasy                        Drama                               
## [367] Animated musical comedy              Documentary                         
## [369] Anime/Science fiction                Drama                               
## [371] Documentary                          Documentary                         
## [373] Action                               Documentary                         
## [375] Drama                                Documentary                         
## [377] Drama                                Comedy                              
## [379] Documentary                          Romantic drama                      
## [381] Variety Show                         Drama                               
## [383] Drama                                Drama                               
## [385] Documentary                          Comedy-drama                        
## [387] Superhero/Action                     Documentary                         
## [389] Drama                                Drama                               
## [391] Drama                                Biographical/Comedy                 
## [393] Documentary                          Documentary                         
## [395] Documentary                          Romantic comedy                     
## [397] Documentary                          Comedy                              
## [399] Thriller                             Comedy                              
## [401] Documentary                          Documentary                         
## [403] Documentary                          Documentary                         
## [405] Documentary                          Drama                               
## [407] Drama                                Aftershow / Interview               
## [409] Drama                                Drama                               
## [411] Documentary                          Drama                               
## [413] Documentary                          Thriller                            
## [415] Documentary                          Documentary                         
## [417] Documentary                          Animation / Short                   
## [419] Drama                                Documentary                         
## [421] Biopic                               Romance                             
## [423] Historical-epic                      Comedy-drama                        
## [425] Documentary                          Documentary                         
## [427] Documentary                          Documentary                         
## [429] Romance                              Crime drama                         
## [431] Comedy / Musical                     Comedy-drama                        
## [433] Documentary                          Documentary                         
## [435] Aftershow / Interview                Documentary                         
## [437] Documentary                          Documentary                         
## [439] Drama                                Aftershow / Interview               
## [441] Documentary                          Documentary                         
## [443] Documentary                          Documentary                         
## [445] Documentary                          Documentary                         
## [447] Animation / Comedy                   Comedy                              
## [449] Christmas/Fantasy/Adventure/Comedy   Biopic                              
## [451] Action-thriller                      Aftershow / Interview               
## [453] Animation                            Animation                           
## [455] Drama                                Documentary                         
## [457] Documentary                          Mentalism special                   
## [459] Documentary                          Documentary                         
## [461] Documentary                          Crime drama                         
## [463] Documentary                          Documentary                         
## [465] Documentary                          Documentary                         
## [467] Documentary                          One-man show                        
## [469] Documentary                          Documentary                         
## [471] Drama                                Documentary                         
## [473] Documentary                          Documentary                         
## [475] Psychological thriller               Drama                               
## [477] Documentary                          Drama                               
## [479] Romantic comedy                      Documentary                         
## [481] Documentary                          Drama                               
## [483] Documentary                          Documentary                         
## [485] Documentary                          Documentary                         
## [487] Romantic comedy                      Drama-Comedy                        
## [489] Drama                                Coming-of-age comedy-drama          
## [491] Drama                                Crime drama                         
## [493] Comedy                               Drama                               
## [495] Documentary                          Historical drama                    
## [497] Making-of                            War                                 
## [499] Documentary                          Biopic                              
## [501] Crime drama                          Documentary                         
## [503] Documentary                          Documentary                         
## [505] Drama                                Documentary                         
## [507] Animation                            Action-adventure                    
## [509] Crime drama                          Thriller                            
## [511] Documentary                          Documentary                         
## [513] Documentary                          Animation / Short                   
## [515] Documentary                          Documentary                         
## [517] Western                              Documentary                         
## [519] Comedy-drama                         Documentary                         
## [521] Documentary                          Documentary                         
## [523] Documentary                          Documentary                         
## [525] Documentary                          Concert Film                        
## [527] Documentary                          Documentary                         
## [529] Aftershow / Interview                Documentary                         
## [531] Documentary                          Documentary                         
## [533] Concert Film                         Documentary                         
## [535] Documentary                          Documentary                         
## [537] Documentary                          Animation / Science Fiction         
## [539] Documentary                          Variety show                        
## [541] Documentary                          Documentary                         
## [543] Documentary                          Anthology/Dark comedy               
## [545] Documentary                          Documentary                         
## [547] Documentary                          Documentary                         
## [549] Documentary                          Drama                               
## [551] Documentary                          Drama                               
## [553] Musical / Short                      War drama                           
## [555] Documentary                          Documentary                         
## [557] Documentary                          Concert Film                        
## [559] Making-of                            Drama                               
## [561] Animation / Short                    Crime drama                         
## [563] Drama                                Documentary                         
## [565] Documentary                          Drama                               
## [567] Documentary                          Documentary                         
## [569] Documentary                          Documentary                         
## [571] Documentary                          Documentary                         
## [573] Documentary                          Animation/Christmas/Comedy/Adventure
## [575] Documentary                          Documentary                         
## [577] Documentary                          Documentary                         
## [579] Concert Film                         Concert Film                        
## [581] Documentary                          One-man show                        
## [583] Documentary                          Documentary                         
## 115 Levels: Action Action-adventure Action-thriller ... Zombie/Heist
factor(df$Premiere)
##   [1] August 5, 2019     August 21, 2020    December 26, 2019 
##   [4] January 19, 2018   October 30, 2020   November 1, 2019  
##   [7] December 4, 2020   June 5, 2020       March 23, 2018    
##  [10] May 18, 2021       April 22, 2021     November 27, 2020 
##  [13] September 18, 2020 October 1, 2020    November 22, 2016 
##  [16] December 19, 2019  January 1, 2020    February 21, 2020 
##  [19] January 1, 2021    August 25, 2017    September 13, 2019
##  [22] July 18, 2019      August 16, 2019    February 26, 2021 
##  [25] April 9, 2021      July 16, 2020      April 2, 2021     
##  [28] July 31, 2020      February 10, 2021  December 7, 2018  
##  [31] May 24, 2019       October 28, 2016   February 22, 2019 
##  [34] December 3, 2019   October 25, 2019   July 15, 2020     
##  [37] July 14, 2020      November 30, 2020  January 18, 2019  
##  [40] March 5, 2021      April 2, 2020      October 2, 2020   
##  [43] December 25, 2020  December 4, 2020   January 6, 2017   
##  [46] May 1, 2020        October 28, 2020   January 20, 2017  
##  [49] April 10, 2020     December 11, 2015  April 17, 2020    
##  [52] August 14, 2020    November 28, 2019  October 30, 2020  
##  [55] January 23, 2020   July 13, 2018      October 15, 2020  
##  [58] July 15, 2016      February 11, 2021  October 22, 2020  
##  [61] January 13, 2017   April 3, 2020      April 20, 2018    
##  [64] February 25, 2021  July 23, 2020      September 8, 2017 
##  [67] August 21, 2019    July 3, 2020       November 22, 2020 
##  [70] July 20, 2018      February 22, 2019  May 26, 2021      
##  [73] February 14, 2017  May 5, 2017        October 7, 2020   
##  [76] May 25, 2018       May 24, 2019       April 14, 2017    
##  [79] May 17, 2019       May 14, 2019       February 5, 2021  
##  [82] September 13, 2019 November 27, 2020  April 27, 2018    
##  [85] November 30, 2018  August 30, 2019    April 30, 2020    
##  [88] August 12, 2020    May 28, 2020       September 7, 2018 
##  [91] April 29, 2021     June 24, 2018      April 12, 2019    
##  [94] August 26, 2016    October 15, 2020   December 5, 2019  
##  [97] May 3, 2019        September 18, 2020 September 2, 2020 
## [100] March 23, 2018     March 6, 2020      October 4, 2019   
## [103] April 2, 2021      August 11, 2017    January 15, 2021  
## [106] November 19, 2020  July 1, 2020       December 4, 2015  
## [109] October 26, 2018   December 1, 2019   April 28, 2021    
## [112] October 16. 2019   November 15, 2019  February 8, 2019  
## [115] April 10, 2020     February 23, 2018  October 2, 2020   
## [118] February 11, 2021  April 15, 2021     January 19, 2018  
## [121] February 4, 2018   November 21, 2019  July 6, 2018      
## [124] August 10, 2018    April 5, 2019      May 10, 2019      
## [127] October 12, 2017   July 7, 2016       January 15, 2021  
## [130] August 29, 2019    September 28, 2018 September 3, 2020 
## [133] June 19, 2020      October 27, 2020   January 11, 2019  
## [136] February 5, 2021   December 23, 2020  September 16, 2020
## [139] August 21, 2020    October 2, 2020    April 14, 2021    
## [142] March 26, 2021     March 25, 2021     December 15, 2017 
## [145] September 11, 2020 December 8, 2017   October 18, 2019  
## [148] October 9, 2020    May 16, 2019       January 4, 2019   
## [151] September 1, 2017  June 18, 2020      December 12, 2018 
## [154] July 12, 2019      April 14, 2021     May 27, 2016      
## [157] November 2, 2018   May 14, 2021       May 13, 2020      
## [160] February 1, 2019   March 12, 2021     March 29, 2019    
## [163] December 14, 2020  November 17, 2017  May 1, 2020       
## [166] November 1, 2019   December 16, 2016  April 27, 2018    
## [169] June 5, 2020       August 21, 2020    July 27, 2018     
## [172] March 30, 2018     May 14, 2021       November 8, 2019  
## [175] October 13, 2016   November 5, 2020   November 30, 2018 
## [178] April 30, 2020     April 17, 2020     April 28, 2017    
## [181] September 7, 2018  April 28, 2017     April 29, 2016    
## [184] June 29, 2018      August 24, 2018    September 10, 2020
## [187] December 7, 2020   July 24, 2020      April 12, 2019    
## [190] November 11, 2020  October 2, 2020    April 6, 2018     
## [193] January 17, 2020   April 6, 2018      May 21, 2021      
## [196] November 16, 2018  November 15, 2019  July 16, 2019     
## [199] February 7, 2020   September 28, 2018 March 27, 2020    
## [202] March 27, 2020     January 1, 2021    January 12, 2018  
## [205] December 11, 2020  November 11, 2016  March 20, 2020    
## [208] April 13, 2018     May 4, 2018        January 27, 2017  
## [211] August 9, 2019     March 8, 2019      June 14, 2019     
## [214] August 14, 2020    October 21, 2020   November 25, 2020 
## [217] May 11, 2018       November 16, 2018  February 12, 2020 
## [220] May 26, 2017       December 13, 2019  September 20, 2019
## [223] March 10, 2017     April 28, 2017     March 17, 2017    
## [226] January 29, 2021   October 28, 2020   November 1, 2019  
## [229] May 29, 2015       August 3, 2018     March 13, 2020    
## [232] August 2, 2019     March 18, 2016     October 30, 2020  
## [235] April 17, 2020     January 8, 2021    April 1, 2021     
## [238] November 10, 2017  May 22, 2020       March 24, 2017    
## [241] May 24, 2019       January 15, 2021   August 28, 2020   
## [244] August 7, 2020     November 20, 2020  May 26, 2021      
## [247] January 29, 2021   November 6, 2020   August 17, 2020   
## [250] April 9, 2021      February 8, 2019   September 27, 2019
## [253] June 19, 2020      August 14, 2020    July 24, 2020     
## [256] March 23, 2018     April 19, 2019     March 6, 2020     
## [259] September 14, 2018 April 27, 2018     December 1, 2017  
## [262] April 7, 2017      October 20, 2017   May 22, 2019      
## [265] June 8, 2018       October 12, 2018   March 16, 2018    
## [268] December 22, 2017  May 18, 2018       April 2, 2021     
## [271] June 19, 2020      March 18, 2021     April 13, 2018    
## [274] January 28, 2021   April 19, 2019     May 26, 2021      
## [277] November 24, 2020  January 25, 2019   December 21, 2018 
## [280] April 21, 2017     June 9, 2017       December 9, 2016  
## [283] October 13, 2017   March 31, 2017     October 11, 2019  
## [286] October 18, 2019   March 29, 2019     March 9, 2018     
## [289] April 23, 2020     February 12, 2021  August 28, 2019   
## [292] March 27, 2020     August 5, 2020     December 21, 2020 
## [295] September 16, 2016 September 25, 2019 December 24, 2019 
## [298] March 30, 2018     October 11, 2019   February 16, 2018 
## [301] February 14, 2020  August 20, 2020    February 11, 2021 
## [304] April 29, 2020     December 13, 2014  September 21, 2018
## [307] October 23, 2020   October 12, 2019   September 15. 2017
## [310] September 27, 2019 March 16, 2018     January 14, 2021  
## [313] May 5, 2017        March 25, 2020     April 22, 2020    
## [316] March 13, 2019     September 28, 2018 March 8, 2019     
## [319] October 20, 2017   February 9, 2018   October 28, 2019  
## [322] February 28, 2020  August 28, 2020    March 19, 2020    
## [325] March 21, 2019     December 11, 2020  April 17, 2021    
## [328] May 31, 2019       June 12, 2020      April 7, 2021     
## [331] June 26, 2020      September 29, 2017 October 30, 2020  
## [334] November 13, 2020  June 14, 2019      June 15, 2018     
## [337] May 7, 2021        December 7, 2018   June 24, 2020     
## [340] June 23, 2017      May 12, 2021       June 15, 2018     
## [343] July 28, 2017      April 10, 2020     April 21, 2017    
## [346] January 20, 2020   March 26, 2021     December 21, 2018 
## [349] June 24, 2020      February 26, 2021  June 7, 2019      
## [352] August 19, 2016    September 4, 2020  October 25, 2019  
## [355] May 7, 2021        June 29, 2018      December 7, 2018  
## [358] November 23, 2020  February 5, 2021   December 7, 2018  
## [361] September 14, 2018 August 20, 2020    July 31, 2019     
## [364] January 15, 2021   June 18, 2020      April 16, 2021    
## [367] April 16, 2021     November 20, 2019  May 20, 2017      
## [370] May 27, 2021       June 16, 2017      January 11, 2021  
## [373] April 24, 2020     December 11, 2020  November 24, 2020 
## [376] September 15, 2020 February 3, 2017   December 3, 2020  
## [379] October 28, 2019   February 5, 2021   February 7, 2017  
## [382] March 3, 2021      April 9, 2021      March 12, 2021    
## [385] July 10, 2019      July 29, 2016      July 10, 2020     
## [388] July 15. 2016      October 18, 2019   October 10, 2018  
## [391] October 28, 2016   January 26, 2018   March 20, 2020    
## [394] September 21, 2020 May 3, 2019        May 31, 2019      
## [397] May 6, 2020        August 3, 2018     June 29, 2018     
## [400] December 27, 2020  September 17, 2020 May 11, 2020      
## [403] September 12, 2017 April 20, 2018     November 21, 2017 
## [406] October 2, 2020    September 30, 2020 September 30, 2020
## [409] November 13, 2020  November 2, 2018   February 9, 2018  
## [412] July 14, 2017      January 6, 2021    December 24, 2020 
## [415] September 30, 2016 October 8, 2020    March 1, 2021     
## [418] December 28, 2020  February 24, 2017  May 19, 2017      
## [421] December 4, 2020   September 29, 2017 November 9, 2018  
## [424] March 26, 2021     October 12, 2018   February 9, 2018  
## [427] June 3, 2020       July 10, 2020      May 1, 2020       
## [430] March 29, 2019     May 23, 2019       October 13, 2017  
## [433] October 12, 2018   September 22, 2017 November 3, 2020  
## [436] October 13, 2017   November 20, 2019  September 15, 2019
## [439] December 18, 2020  December 18, 2020  March 17, 2021    
## [442] February 23, 2021  April 26, 2019     May 17, 2019      
## [445] March 22, 2019     September 1, 2017  August 9, 2019    
## [448] December 9, 2020   November 22, 2018  March 22, 2019    
## [451] October 19, 2018   January 26, 2017   November 30, 2018 
## [454] December 1, 2020   June 19, 2019      April 22, 2020    
## [457] November 27, 2020  October 19, 2018   December 27, 2019 
## [460] May 4, 2018        September 10, 2019 May 14, 2021      
## [463] April 20, 2019     October 27, 2020   May 26, 2017      
## [466] September 18, 2015 May 1, 2019        November 13, 2018 
## [469] March 18, 2016     October 20, 2017   January 7, 2021   
## [472] April 6, 2018      November 2, 2018   October 15, 2020  
## [475] September 16, 2020 January 29, 2021   July 24, 2019     
## [478] January 22, 2021   August 17, 2018    September 30, 2020
## [481] September 23, 2016 September 15, 2017 January 18, 2019  
## [484] October 28, 2016   April 10, 2020     March 8, 2018     
## [487] February 14, 2018  February 22, 2019  October 5, 2018   
## [490] October 18, 2019   May 1, 2018        January 18, 2019  
## [493] October 9, 2020    April 30, 2021     June 19, 2019     
## [496] November 1, 2019   October 29, 2019   October 7, 2016   
## [499] August 10, 2018    October 25, 2019   October 11, 2019  
## [502] September 13, 2016 July 17, 2020      May 12, 2017      
## [505] May 27, 2020       July 8, 2020       October 13, 2020  
## [508] June 28, 2017      September 12, 2018 July 31, 2020     
## [511] January 11, 2019   February 8, 2019   October 28, 2020  
## [514] March 8, 2020      October 14, 2016   April 29, 2016    
## [517] November 16, 2018  October 6, 2017    June 24, 2016     
## [520] May 22, 2015       August 21, 2019    November 1, 2019  
## [523] September 29, 2017 January 31, 2020   February 12, 2019 
## [526] November 25, 2020  October 26, 2018   June 7, 2019      
## [529] November 27, 2019  July 29, 2020      November 2, 2018  
## [532] July 17, 2015      November 22, 2017  October 14, 2020  
## [535] September 7, 2018  October 2, 2020    April 17, 2019    
## [538] August 16, 2019    October 27. 2017   December 24, 2019 
## [541] September 13, 2018 September 16. 2016 June 24, 2020     
## [544] November 12, 2020  September 21, 2018 June 12, 2019     
## [547] October 18, 2019   July 27, 2018      September 9, 2020 
## [550] December 20, 2019  June 26, 2015      February 21, 2020 
## [553] June 27, 2019      October 16, 2015   April 19, 2019    
## [556] March 25, 2020     November 17, 2017  October 12, 2016  
## [559] February 11, 2020  December 14, 2018  November 20, 2020 
## [562] November 27, 2019  October 16, 2020   April 29, 2020    
## [565] August 4, 2017     December 6, 2019   November 4, 2016  
## [568] December 21, 2018  July 14, 2017      September 7, 2020 
## [571] August 26, 2020    October 7, 2016    June 19, 2020     
## [574] November 15, 2019  March 24, 2021     October 14, 2020  
## [577] November 24, 2017  October 23, 2019   May 20, 2020      
## [580] December 31, 2018  October 9, 2015    December 16, 2018 
## [583] December 8, 2020   October 4, 2020   
## 390 Levels: April 1, 2021 April 10, 2020 April 12, 2019 ... September 9, 2020
factor(df$Language)
##   [1] English/Japanese           Spanish                   
##   [3] Italian                    English                   
##   [5] Hindi                      Hindi                     
##   [7] Turkish                    English                   
##   [9] English                    Hindi                     
##  [11] English                    Korean                    
##  [13] Indonesian                 Malay                     
##  [15] English                    Spanish                   
##  [17] Hindi                      English                   
##  [19] Korean                     English                   
##  [21] English                    English                   
##  [23] English                    Hindi                     
##  [25] English                    English                   
##  [27] Dutch                      English                   
##  [29] French                     Italian                   
##  [31] English/Spanish            English                   
##  [33] French                     Portuguese                
##  [35] English                    Italian                   
##  [37] French                     Filipino                  
##  [39] English                    French                    
##  [41] English                    Italian                   
##  [43] English                    German                    
##  [45] English                    Hindi                     
##  [47] Polish                     English                   
##  [49] English                    English                   
##  [51] French                     English                   
##  [53] English                    Spanish                   
##  [55] Portuguese                 English                   
##  [57] Indonesian                 English                   
##  [59] Polish                     Norwegian                 
##  [61] English                    English                   
##  [63] English                    Indonesian                
##  [65] English                    English                   
##  [67] English                    English                   
##  [69] English                    English                   
##  [71] Marathi                    Thai                      
##  [73] English                    English                   
##  [75] English                    English                   
##  [77] English                    English                   
##  [79] English                    English                   
##  [81] English                    English                   
##  [83] Italian                    English                   
##  [85] English                    French                    
##  [87] English                    Hindi                     
##  [89] Spanish                    French                    
##  [91] English                    French                    
##  [93] Spanish                    English                   
##  [95] English                    English                   
##  [97] Spanish                    Hindi                     
##  [99] German                     English                   
## [101] Hindi                      English                   
## [103] French                     English                   
## [105] English                    English                   
## [107] Italian                    English                   
## [109] English                    Filipino                  
## [111] Portuguese                 English                   
## [113] Hindi                      English                   
## [115] English                    English                   
## [117] English                    Swedish                   
## [119] Japanese                   English                   
## [121] English                    English                   
## [123] English                    English                   
## [125] English                    English                   
## [127] Spanish/Basque             English                   
## [129] Portuguese                 English                   
## [131] English                    English                   
## [133] Turkish                    English                   
## [135] English                    Italian                   
## [137] English                    Spanish                   
## [139] English                    English                   
## [141] English                    English                   
## [143] Italian                    English                   
## [145] Spanish                    English                   
## [147] English                    Hindi                     
## [149] English                    English                   
## [151] English                    Thai                      
## [153] English                    English                   
## [155] Polish                     English                   
## [157] English                    English                   
## [159] English                    English                   
## [161] English                    Marathi                   
## [163] English                    English                   
## [165] English                    English                   
## [167] English                    English                   
## [169] Hindi                      Hindi                     
## [171] English                    English                   
## [173] English                    English                   
## [175] English                    English                   
## [177] Hindi                      Portuguese                
## [179] German                     English                   
## [181] English                    English                   
## [183] English                    English                   
## [185] English                    English                   
## [187] Dutch                      English                   
## [189] English                    German                    
## [191] Spanish                    English                   
## [193] English                    English                   
## [195] English                    English                   
## [197] English                    English                   
## [199] English                    English                   
## [201] Hindi                      French                    
## [203] English                    English                   
## [205] English                    English                   
## [207] Italian                    English                   
## [209] Italian                    English                   
## [211] Hindi                      English                   
## [213] English                    English                   
## [215] English                    English                   
## [217] English                    English                   
## [219] English                    English                   
## [221] English                    English                   
## [223] English                    English                   
## [225] English                    English                   
## [227] English                    English                   
## [229] English                    English                   
## [231] English                    English                   
## [233] English                    French                    
## [235] English                    Turkish                   
## [237] Indonesian                 Portuguese                
## [239] English                    English                   
## [241] English                    Hindi                     
## [243] Spanish                    English                   
## [245] English                    Italian                   
## [247] Spanish                    English                   
## [249] Indonesian                 Turkish                   
## [251] English                    English                   
## [253] French                     English                   
## [255] Spanish                    English                   
## [257] English                    English                   
## [259] English                    English                   
## [261] English                    English                   
## [263] English                    English/Spanish           
## [265] English                    English                   
## [267] English                    English                   
## [269] English                    English                   
## [271] English                    Portuguese                
## [273] French                     Indonesian                
## [275] Hindi                      English                   
## [277] Spanish                    English                   
## [279] Portuguese                 English                   
## [281] English                    English                   
## [283] English                    English                   
## [285] Japanese                   English                   
## [287] English                    English/Japanese          
## [289] Korean                     English                   
## [291] English                    English                   
## [293] French                     English                   
## [295] English                    English/Spanish           
## [297] Spanish                    English                   
## [299] English                    English                   
## [301] German                     English                   
## [303] Indonesian                 English                   
## [305] English                    English                   
## [307] English                    French                    
## [309] English                    English                   
## [311] English                    Indonesian                
## [313] English                    Spanish                   
## [315] English                    English                   
## [317] Spanish/Catalan            English                   
## [319] English                    English                   
## [321] English/Spanish            English                   
## [323] English                    Japanese                  
## [325] French                     English                   
## [327] English                    Hindi                     
## [329] English                    English                   
## [331] English                    English                   
## [333] English                    English                   
## [335] English/Swedish            Hindi                     
## [337] English                    English                   
## [339] Spanish                    English                   
## [341] French                     English                   
## [343] English                    English/Taiwanese/Mandarin
## [345] English                    English                   
## [347] English                    English                   
## [349] Hindi                      Spanish                   
## [351] Spanish                    English                   
## [353] English                    English                   
## [355] Hindi                      English                   
## [357] English                    English                   
## [359] Korean                     English                   
## [361] English                    Spanish                   
## [363] English                    English                   
## [365] Japanese                   Hindi                     
## [367] English                    English                   
## [369] Japanese                   English                   
## [371] English                    English                   
## [373] English                    English                   
## [375] English                    Thia/English              
## [377] English                    Portuguese                
## [379] Japanese                   English                   
## [381] English                    English                   
## [383] Korean                     Turkish                   
## [385] Spanish                    English                   
## [387] English                    English                   
## [389] Hindi                      English                   
## [391] Spanish                    English                   
## [393] Spanish                    English                   
## [395] English/Mandarin           English                   
## [397] English                    Hindi                     
## [399] English                    English                   
## [401] French                     English                   
## [403] English                    English                   
## [405] English                    Hindi                     
## [407] English                    English                   
## [409] Italian                    English                   
## [411] Georgian                   English                   
## [413] French                     Hindi                     
## [415] English                    French                    
## [417] English                    English                   
## [419] English                    Portuguese                
## [421] English                    English                   
## [423] English                    Hindi                     
## [425] English                    English                   
## [427] English                    English                   
## [429] English                    English                   
## [431] English                    English                   
## [433] English                    English                   
## [435] English                    English                   
## [437] Spanish                    Spanish                   
## [439] English                    English                   
## [441] English                    English                   
## [443] English                    English                   
## [445] English                    English                   
## [447] English                    Italian                   
## [449] English                    English                   
## [451] Indonesian                 English                   
## [453] English                    English                   
## [455] English                    English                   
## [457] English                    English                   
## [459] Spanish                    English                   
## [461] English                    Dutch                     
## [463] English                    Spanish                   
## [465] English                    English                   
## [467] English                    English                   
## [469] English                    English                   
## [471] English                    English                   
## [473] English                    Bengali                   
## [475] English                    English                   
## [477] English                    English                   
## [479] English                    English                   
## [481] English                    Khmer/English/French      
## [483] English                    English                   
## [485] English                    English/Hindi             
## [487] Hindi                      English                   
## [489] English                    Spanish                   
## [491] Tamil                      Hindi                     
## [493] English                    Marathi                   
## [495] Portuguese                 English                   
## [497] English                    English                   
## [499] English                    English                   
## [501] English                    English                   
## [503] English                    English                   
## [505] Spanish                    Spanish/English           
## [507] English                    English/Korean            
## [509] Italian                    Hindi                     
## [511] English/Spanish            English                   
## [513] English/Arabic             English                   
## [515] English/Mandarin           English/Russian           
## [517] English                    English                   
## [519] English                    English                   
## [521] English                    English                   
## [523] English                    English                   
## [525] English/Hindi              English                   
## [527] English                    English                   
## [529] English                    English                   
## [531] English                    English                   
## [533] English                    Korean                    
## [535] English                    English                   
## [537] English                    English                   
## [539] English                    English                   
## [541] English                    English                   
## [543] English                    Hindi                     
## [545] English                    English                   
## [547] English                    English                   
## [549] English                    English                   
## [551] English                    Hindi                     
## [553] English                    English/Akan              
## [555] English                    English                   
## [557] English                    English                   
## [559] Spanish                    Spanish                   
## [561] English                    English                   
## [563] English                    English                   
## [565] English                    English                   
## [567] English                    English                   
## [569] English                    English                   
## [571] English                    English                   
## [573] English                    English                   
## [575] English                    Spanish                   
## [577] English                    English                   
## [579] English                    English                   
## [581] English/Ukranian/Russian   English                   
## [583] Portuguese                 English                   
## 38 Levels: Bengali Dutch English English/Akan English/Arabic ... Turkish
library(ggplot2)
ggplot(temp, aes(x = df$Runtime, y = df$IMDB.Score)) + geom_point()

plot(df$Runtime, type = 'l')

plot(df$IMDB.Score, type = 'l')

ggplot(df, aes(x = Runtime, y = IMDB.Score )) + geom_line()

table(df$Genre)
## 
##                               Action                     Action-adventure 
##                                    7                                    1 
##                      Action-thriller                        Action comedy 
##                                    3                                    5 
##                      Action thriller                        Action/Comedy 
##                                    1                                    1 
##               Action/Science fiction                            Adventure 
##                                    1                                    2 
##                    Adventure-romance                     Adventure/Comedy 
##                                    1                                    1 
##                Aftershow / Interview              Animated musical comedy 
##                                    6                                    1 
##                            Animation                   Animation / Comedy 
##                                    5                                    1 
##                 Animation / Musicial          Animation / Science Fiction 
##                                    1                                    1 
##                    Animation / Short Animation/Christmas/Comedy/Adventure 
##                                    4                                    1 
##           Animation/Comedy/Adventure          Animation/Musical/Adventure 
##                                    1                                    1 
##                  Animation/Superhero                        Anime / Short 
##                                    1                                    1 
##                        Anime/Fantasy                Anime/Science fiction 
##                                    1                                    2 
##                Anthology/Dark comedy                  Biographical/Comedy 
##                                    1                                    1 
##                               Biopic                         Black comedy 
##                                    9                                    2 
##                    Christian musical                     Christmas comedy 
##                                    1                                    1 
##                    Christmas musical   Christmas/Fantasy/Adventure/Comedy 
##                                    1                                    1 
##                               Comedy                         Comedy-drama 
##                                   49                                   14 
##                     Comedy / Musical                        Comedy horror 
##                                    2                                    1 
##                       Comedy mystery                Comedy/Fantasy/Family 
##                                    1                                    1 
##                        Comedy/Horror           Coming-of-age comedy-drama 
##                                    1                                    1 
##                         Concert Film                          Crime drama 
##                                    6                                   11 
##                       Crime thriller                         Dance comedy 
##                                    1                                    1 
##                          Dark comedy                          Documentary 
##                                    2                                  159 
##                                Drama                         Drama-Comedy 
##                                   77                                    1 
##                        Drama / Short                         Drama/Horror 
##                                    1                                    1 
##                               Family                          Family film 
##                                    2                                    2 
##             Family/Christmas musical                  Family/Comedy-drama 
##                                    1                                    1 
##                              Fantasy                                Heist 
##                                    1                                    1 
##                  Heist film/Thriller           Hidden-camera prank comedy 
##                                    1                                    1 
##                      Historical-epic                     Historical drama 
##                                    1                                    1 
##                               Horror                      Horror-thriller 
##                                    9                                    2 
##                     Horror anthology                        Horror comedy 
##                                    1                                    1 
##                      Horror thriller                   Horror/Crime drama 
##                                    3                                    1 
##                            Making-of                    Mentalism special 
##                                    2                                    1 
##                         Mockumentary                              Musical 
##                                    2                                    2 
##                      Musical / Short                       Musical comedy 
##                                    1                                    2 
##              Musical/Western/Fantasy                              Mystery 
##                                    1                                    2 
##                         One-man show                   Political thriller 
##                                    3                                    1 
##                 Psychological horror               Psychological thriller 
##                                    1                                    4 
##         Psychological thriller drama                              Romance 
##                                    1                                    6 
##                        Romance drama                      Romantic comedy 
##                                    1                                   39 
##                Romantic comedy-drama              Romantic comedy/Holiday 
##                                    1                                    1 
##                       Romantic drama                  Romantic teen drama 
##                                    5                                    1 
##               Romantic teenage drama                    Romantic thriller 
##                                    1                                    1 
##                               Satire                      Science fiction 
##                                    2                                    4 
##            Science fiction adventure             Science fiction thriller 
##                                    1                                    1 
##               Science fiction/Action                Science fiction/Drama 
##                                    1                                    3 
##              Science fiction/Mystery             Science fiction/Thriller 
##                                    1                                    4 
##                         Sports-drama                          Sports film 
##                                    3                                    1 
##                         Spy thriller                          Stop Motion 
##                                    2                                    1 
##                            Superhero                     Superhero-Comedy 
##                                    2                                    1 
##                     Superhero/Action                   Supernatural drama 
##                                    1                                    1 
##                    Teen comedy-drama                   Teen comedy horror 
##                                    1                                    1 
##                             Thriller                        Urban fantasy 
##                                   33                                    1 
##                         Variety show                         Variety Show 
##                                    4                                    1 
##                                  War                           War-Comedy 
##                                    2                                    1 
##                            War drama                              Western 
##                                    2                                    3 
##                         Zombie/Heist 
##                                    1
table(df$Language)
## 
##                    Bengali                      Dutch 
##                          1                          3 
##                    English               English/Akan 
##                        401                          1 
##             English/Arabic              English/Hindi 
##                          1                          2 
##           English/Japanese             English/Korean 
##                          2                          1 
##           English/Mandarin            English/Russian 
##                          2                          1 
##            English/Spanish            English/Swedish 
##                          5                          1 
## English/Taiwanese/Mandarin   English/Ukranian/Russian 
##                          1                          1 
##                   Filipino                     French 
##                          2                         20 
##                   Georgian                     German 
##                          1                          5 
##                      Hindi                 Indonesian 
##                         33                          9 
##                    Italian                   Japanese 
##                         14                          6 
##       Khmer/English/French                     Korean 
##                          1                          6 
##                      Malay                    Marathi 
##                          1                          3 
##                  Norwegian                     Polish 
##                          1                          3 
##                 Portuguese                    Spanish 
##                         12                         31 
##             Spanish/Basque            Spanish/Catalan 
##                          1                          1 
##            Spanish/English                    Swedish 
##                          1                          1 
##                      Tamil                       Thai 
##                          1                          2 
##               Thia/English                    Turkish 
##                          1                          5
library(dplyr)
library(gcookbook)

t=df %>% filter(df$Language=="Hindi" & df$Genre == "Comedy")
t
##                  Title  Genre          Premiere Runtime IMDB.Score Language
## 1   Sardar Ka Grandson Comedy      May 18, 2021     139        4.1    Hindi
## 2         House Arrest Comedy November 15, 2019     104        5.5    Hindi
## 3           Chopsticks Comedy      May 31, 2019     100        6.5    Hindi
## 4 Long Live Brij Mohan Comedy    August 3, 2018     105        6.8    Hindi
t=df %>% filter(df$Language=="Hindi" & df$Runtime >=120)
t
##                                    Title                 Genre
## 1                                  Drive                Action
## 2                     Sardar Ka Grandson                Comedy
## 3                          Ghost Stories      Horror anthology
## 4                  The Girl on the Train              Thriller
## 5  Dolly Kitty and Those Twinkling Stars                 Drama
## 6                       Ginny Weds Sunny       Romantic comedy
## 7                           Lust Stories                 Drama
## 8                        Ajeeb Daastaans                 Drama
## 9                   Love per Square Foot       Romantic comedy
## 10                        Raat Akeli Hai              Thriller
## 11                                  Ludo Anthology/Dark comedy
##              Premiere Runtime IMDB.Score Language
## 1    November 1, 2019     147        3.5    Hindi
## 2        May 18, 2021     139        4.1    Hindi
## 3     January 1, 2020     144        4.3    Hindi
## 4   February 26, 2021     120        4.4    Hindi
## 5  September 18, 2020     120        5.4    Hindi
## 6     October 9, 2020     125        5.7    Hindi
## 7       June 15, 2018     120        6.5    Hindi
## 8      April 16, 2021     142        6.7    Hindi
## 9   February 14, 2018     133        7.2    Hindi
## 10      July 31, 2020     149        7.3    Hindi
## 11  November 12, 2020     149        7.6    Hindi
t=df %>% filter(df$Language=="Hindi" & df$Genre == "Comedy")
t
##                  Title  Genre          Premiere Runtime IMDB.Score Language
## 1   Sardar Ka Grandson Comedy      May 18, 2021     139        4.1    Hindi
## 2         House Arrest Comedy November 15, 2019     104        5.5    Hindi
## 3           Chopsticks Comedy      May 31, 2019     100        6.5    Hindi
## 4 Long Live Brij Mohan Comedy    August 3, 2018     105        6.8    Hindi
t=df %>% filter(df$Language=="English" & df$Genre == "Comedy")
t
##                                Title  Genre           Premiere Runtime
## 1                         Sextuplets Comedy    August 16, 2019      99
## 2                   Seriously Single Comedy      July 31, 2020     107
## 3                        Take the 10 Comedy   January 20, 2017      80
## 4                     The Main Event Comedy     April 10, 2020     101
## 5                       #REALITYHIGH Comedy  September 8, 2017      99
## 6                 Father of the Year Comedy      July 20, 2018      94
## 7                   Girlfriend's Day Comedy  February 14, 2017      70
## 8  Handsome: A Netflix Mystery Movie Comedy        May 5, 2017      81
## 9                    Hubie Halloween Comedy    October 7, 2020     103
## 10                             Ibiza Comedy       May 25, 2018      94
## 11                      Sandy Wexler Comedy     April 14, 2017     131
## 12                       The Week Of Comedy     April 27, 2018     116
## 13                             Naked Comedy    August 11, 2017      96
## 14                      Step Sisters Comedy   January 19, 2018     108
## 15                     Unicorn Store Comedy      April 5, 2019      92
## 16                      Wine Country Comedy       May 10, 2019     103
## 17                     Brahman Naman Comedy       July 7, 2016      95
## 18                     The Sleepover Comedy    August 21, 2020     103
## 19                         Lionheart Comedy    January 4, 2019      94
## 20                   The Wrong Missy Comedy       May 13, 2020      90
## 21                           Yes Day Comedy     March 12, 2021      86
## 22                         Candy Jar Comedy     April 27, 2018      92
## 23                   The After Party Comedy    August 24, 2018      89
## 24      Between Two Ferns: The Movie Comedy September 20, 2019      82
## 25                       Like Father Comedy     August 3, 2018     103
## 26                         Otherhood Comedy     August 2, 2019     100
## 27                        Win It All Comedy      April 7, 2017      88
## 28      The Incredible Jessica James Comedy      July 28, 2017      83
## 29                     Death to 2020 Comedy  December 27, 2020      70
## 30           The 40-Year-Old Version Comedy    October 9, 2020     124
##    IMDB.Score Language
## 1         4.4  English
## 2         4.5  English
## 3         4.8  English
## 4         4.8  English
## 5         5.2  English
## 6         5.2  English
## 7         5.2  English
## 8         5.2  English
## 9         5.2  English
## 10        5.2  English
## 11        5.2  English
## 12        5.2  English
## 13        5.4  English
## 14        5.5  English
## 15        5.5  English
## 16        5.5  English
## 17        5.6  English
## 18        5.6  English
## 19        5.7  English
## 20        5.7  English
## 21        5.7  English
## 22        5.8  English
## 23        5.8  English
## 24        6.1  English
## 25        6.1  English
## 26        6.1  English
## 27        6.2  English
## 28        6.5  English
## 29        6.8  English
## 30        7.2  English
t=df %>% filter(df$Language=="English" & df$Genre == "Comedy")
t
##                                Title  Genre           Premiere Runtime
## 1                         Sextuplets Comedy    August 16, 2019      99
## 2                   Seriously Single Comedy      July 31, 2020     107
## 3                        Take the 10 Comedy   January 20, 2017      80
## 4                     The Main Event Comedy     April 10, 2020     101
## 5                       #REALITYHIGH Comedy  September 8, 2017      99
## 6                 Father of the Year Comedy      July 20, 2018      94
## 7                   Girlfriend's Day Comedy  February 14, 2017      70
## 8  Handsome: A Netflix Mystery Movie Comedy        May 5, 2017      81
## 9                    Hubie Halloween Comedy    October 7, 2020     103
## 10                             Ibiza Comedy       May 25, 2018      94
## 11                      Sandy Wexler Comedy     April 14, 2017     131
## 12                       The Week Of Comedy     April 27, 2018     116
## 13                             Naked Comedy    August 11, 2017      96
## 14                      Step Sisters Comedy   January 19, 2018     108
## 15                     Unicorn Store Comedy      April 5, 2019      92
## 16                      Wine Country Comedy       May 10, 2019     103
## 17                     Brahman Naman Comedy       July 7, 2016      95
## 18                     The Sleepover Comedy    August 21, 2020     103
## 19                         Lionheart Comedy    January 4, 2019      94
## 20                   The Wrong Missy Comedy       May 13, 2020      90
## 21                           Yes Day Comedy     March 12, 2021      86
## 22                         Candy Jar Comedy     April 27, 2018      92
## 23                   The After Party Comedy    August 24, 2018      89
## 24      Between Two Ferns: The Movie Comedy September 20, 2019      82
## 25                       Like Father Comedy     August 3, 2018     103
## 26                         Otherhood Comedy     August 2, 2019     100
## 27                        Win It All Comedy      April 7, 2017      88
## 28      The Incredible Jessica James Comedy      July 28, 2017      83
## 29                     Death to 2020 Comedy  December 27, 2020      70
## 30           The 40-Year-Old Version Comedy    October 9, 2020     124
##    IMDB.Score Language
## 1         4.4  English
## 2         4.5  English
## 3         4.8  English
## 4         4.8  English
## 5         5.2  English
## 6         5.2  English
## 7         5.2  English
## 8         5.2  English
## 9         5.2  English
## 10        5.2  English
## 11        5.2  English
## 12        5.2  English
## 13        5.4  English
## 14        5.5  English
## 15        5.5  English
## 16        5.5  English
## 17        5.6  English
## 18        5.6  English
## 19        5.7  English
## 20        5.7  English
## 21        5.7  English
## 22        5.8  English
## 23        5.8  English
## 24        6.1  English
## 25        6.1  English
## 26        6.1  English
## 27        6.2  English
## 28        6.5  English
## 29        6.8  English
## 30        7.2  English

`